Gmail Zend_Framework access_token 问题
我正在使用 zend 框架来获取用户的电子邮件收件箱。我从 Gmail 获得了令牌。
$_SESSION['ACCESS_TOKEN'] = serialize($consumer->getAccessToken($_GET, unserialize($_SESSION['REQUEST_TOKEN'])));
后来我在 $accessToken 变量中得到了 access_token
$accessToken = unserialize($_SESSION['ACCESS_TOKEN']);
当我使用这个 $accessToken 向 gmail 发出请求时,一切都很好。
但是当我将这个 $accessToken 存储在文件或数据库中时,
file_put_contents("token.txt",$accessToken);
当我使用我存储在数据库或文件中的访问令牌对 gmail 进行 API 调用时。
$token= file_get_contents("token.txt");
$http = $token->getHttpClient($oauthOptions); ///Line XXX
$gdata = new Zend_Gdata($http);
$gdata->setMajorProtocolVersion(3);
出现以下致命错误
Fatal error: Call to a member function getHttpClient() on a non-object in ...myFile.php on line XXX
I am using zend framework to grab user's email inbox. I got token from the gmail.
$_SESSION['ACCESS_TOKEN'] = serialize($consumer->getAccessToken($_GET, unserialize($_SESSION['REQUEST_TOKEN'])));
and later i got access_token in the $accessToken variable
$accessToken = unserialize($_SESSION['ACCESS_TOKEN']);
When i make request to gmail using this $accessToken, every thing is ok.
but when i store this $accessToken in the file or Data base
file_put_contents("token.txt",$accessToken);
When i make API call to gmail using this access token which i have stored in database or file.
$token= file_get_contents("token.txt");
$http = $token->getHttpClient($oauthOptions); ///Line XXX
$gdata = new Zend_Gdata($http);
$gdata->setMajorProtocolVersion(3);
The following Fatal error comes
Fatal error: Call to a member function getHttpClient() on a non-object in ...myFile.php on line XXX
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
$token 这里是一个字符串而不是一个对象。
$token is a String here not an Object.