В данный момент сервис недоступен Google api

Я использую API Google Slide для подключения к моей учетной записи проекта, соединение работает отлично, но иногда я получаю эту ошибку:

Неустранимая ошибка: Uncaught Google_Service_Exception: {«error»: {«code»: 503, «message»: «Служба в настоящее время недоступна.», «Errors»: [{«message»: «Служба в настоящее время недоступна.», «domain»: «global», «reason»: «backendError»}], «status»: «UNAVAILABLE»}} в /vendor/google/apiclient/src/Google/Http/REST.php:118 трассировка стека: # 0 /vendor/google/apiclient/src/Google/Http/REST.php(94): Google_Http_REST :: decodeHttpResponse (Object (GuzzleHttp \ Psr7 \ Response), Object (GuzzleHttp \ Psr7 \ Request), ‘Google_Service _…’ ) # 1 /vendor/google/apiclient/src/Google/Task/Runner.php(181): Google_Http_REST :: doExecute (Object (GuzzleHttp \ Client), Object (GuzzleHttp \ Psr7 \ Request), ‘Google_Service _…’ ) # 2 /vendor/google/apiclient/src/Google/Http/REST.php(58): Google_Task_Runner-> запустите /vendor/google/apiclient/src/Google/Http/REST.php в строке 118

Это моя функция getClient Google API:

function getClient(string $SCOPES,string $CLIENT_SECRET_PATH,string $CREDENTIALS_PATH,string $APPLICATION_NAME) {

$this->client->setApplicationName($APPLICATION_NAME);
$this->client->setScopes($SCOPES);
$this->client->setAuthConfig($CLIENT_SECRET_PATH);
$this->client->setAccessType('offline');
$this->client->setApprovalPrompt('force');

$credentialsPath = $this->expandHomeDirectory($CREDENTIALS_PATH);
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {

$authUrl = $this->client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code: ';
$authCode = trim(fgets(STDIN));

$accessToken = $this->client->fetchAccessTokenWithAuthCode($authCode);

if(!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
printf("Credentials saved to %s\n", $credentialsPath);
}
$this->client->setAccessToken($accessToken);

if ($this->client->isAccessTokenExpired()) {
$this->client->fetchAccessTokenWithRefreshToken($this->client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($this->client->getAccessToken()));
}
return $this->client;
}

Это запрос, который я отправляю:

public function replaceAllShapesWithImage(array $data_images)
{
$requests =array();
if(isset($data_images)){
foreach ($data_images as $key => $value) {
$requests[] = new \Google_Service_Slides_Request(array(
'replaceAllShapesWithImage' => array(
'imageUrl' => $value['url'],
'replaceMethod' => $value['replaceMethod'],
'containsText' => array(
'text' => $value['text']
)
)
));
}
}
return $requests;
}

$data_image имеет это значение:

'replaceAllShapesWithImage' => array(
0 => array(
'text'=>'{{LOGO}}',
'url'=>'http://www.16cafe.com/wp-content/themes/16cafe/css/images/logo.png',
'replaceMethod'=>'CENTER_INSIDE'
),
1 => array(
'text'=>'{{PHOTO}}',
'url'=>'http://localhost:9880/wp-content/uploads/2017/02/pla23.jpg',
'replaceMethod'=>'CENTER_INSIDE'
),
)

3

Решение

Слайды определенно могут улучшить обмен сообщениями об ошибках, но я уверен, что проблема в том, что http://localhost:9880/wp-content/uploads/2017/02/pla23.jpg URL изображения, который вы пытаетесь вставить. Я пытался сделать replaceAllShapesWithImage запрос с этим изображением, а также получил 503.

Slides загружает ваши изображения через общедоступный интернет, поэтому localhost Домен не будет работать. Попробуйте разместить его на общедоступном URL-адресе, или вы можете использовать Гугл Диск разместить изображение.

1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]