Google Apps Auth с доменом edu.auPhp

Кемеровские программисты php общаются здесь
Ответить
Anonymous
 Google Apps Auth с доменом edu.au

Сообщение Anonymous »

Я пытаюсь аутентифицировать домен для области документов Google. Это URL:

https://www.google.com/accounts/AuthSub ... %2F%2Fdocs .google.com%2Ffeeds%2F&session=1&secure=0&hd=default

Итак, мой домен: www.mydomain.edu.au

Но когда я делаю запрос, я получаю такой ответ:

The page you have requested cannot be displayed. Another site was requesting access to your Google Account, but sent a malformed request. Please contact the site that you were trying to use when you received this message to inform them of the error. A detailed error message follows:
The site "http://edu.au" has not been registered.


Значит, он идентифицирован как домен edu.au.

Есть ли способ обойти это?

Спасибо!

пример кода для загрузки документа в документы Google:

public static function uploadDocs($data = array())
{
if (!self::checkInput($data)) return false;
$data['url'] = Google::docsAPIUrl.'default/private/full'.self::getFolder($data['folderId']);
//"?convert=false"
$headers = Google::getAuthToken();
array_push($headers, Google::getGData());
$contentHeaders = self::getInputHeaders($data);
array_push($headers, 'Content-Length: '.$contentHeaders['length']);
array_push($headers, 'Content-Type: '.$contentHeaders['type']);
array_push($headers, 'Slug: '.Html::win2utf8($data['docTitle']));
if ($data['inputMethod'] == 'File')
{
$data['input'] = ((fread(fopen($data['input'], 'rb'), filesize($data['input']))));
}
$curl = Google::curl($data['url'], null, $data['input'], $headers);
if (Curl::checkCode($curl['code']))
{
return self::parseNewXML($curl['response']);
}
else
{
Google::$error = array('errorCode'=>$curl['code'],'errorString'=>$curl['response']);
return false;
}
}


Подробнее здесь: https://stackoverflow.com/questions/138 ... -au-domain
Ответить

Быстрый ответ

Изменение регистра текста: 
Смайлики
:) :( :oops: :roll: :wink: :muza: :clever: :sorry: :angel: :read: *x)
Ещё смайлики…
   
К этому ответу прикреплено по крайней мере одно вложение.

Если вы не хотите добавлять вложения, оставьте поля пустыми.

Максимально разрешённый размер вложения: 15 МБ.

Вернуться в «Php»