Google_Service_Exception gmail api php 问题
issue with Google_Service_Exception gmail api php
有一个Google_Service_Exception错误404
Message: Global HTTP Batch endpoint is deprecated. See https://g.co/cloud/global-batch-deprecation for info and migration steps.
我的 Gmail 收件箱无法使用此错误加载
你能帮我离开这里吗?
如 Google 所宣布,Global HTTP Batch endpoint is deprecated
您需要切换到 API-specific 端点。
对于 Gmail API,修改您的代码来自
$batch = new Google_Http_Batch($client)
到
$batch = new Google_Http_Batch($client,false,'https://gmail.googleapis.com')
有一个Google_Service_Exception错误404
Message: Global HTTP Batch endpoint is deprecated. See https://g.co/cloud/global-batch-deprecation for info and migration steps.
我的 Gmail 收件箱无法使用此错误加载
你能帮我离开这里吗?
如 Google 所宣布,Global HTTP Batch endpoint is deprecated
您需要切换到 API-specific 端点。
对于 Gmail API,修改您的代码来自
$batch = new Google_Http_Batch($client)
到
$batch = new Google_Http_Batch($client,false,'https://gmail.googleapis.com')