使用 OAuth 2.0 访问 Google API(特别是 Blogger)(PHP)

发布于 2024-12-02 17:18:08 字数 747 浏览 0 评论 0原文

使用 Google 的教程,我尝试使用 OAuth 2.0 身份验证方法访问 Blogger API。我已成功通过 OAuth 进行身份验证,但我不明白如何访问 API。

他们的所有示例都运行于对象 $gdclient - 如果您使用 AuthSub 方法,该对象将被设置为 Zend_Gdata_AuthSub::getHttpClient($_SESSION['sessionToken']);

但是,如果您使用 OAuth2.0 进行身份验证,我似乎找不到将 $gdclient 设置为什么! 有什么帮助吗?其余的示例很简单,但正如我提到的,它们都运行于 $gdclient,到目前为止我无法设置。

Blogger API 教程:http://code.google.com/apis/ blogger/docs/1.0/developers_guide_php.html

OAuth 2.0:http://code.google.com/apis/accounts/docs/OAuth2.html

谢谢!

Using Google's tutorials, I am attempting to access the Blogger API, using the OAuth 2.0 authentication method. I have successfully authenticated with OAuth, but I do not understand how to access the API's.

All their examples run off of the object $gdclient - which, if you use the AuthSub method, is set to Zend_Gdata_AuthSub::getHttpClient($_SESSION['sessionToken']);

However, I can't seem to find what to set $gdclient to if you authenticated with OAuth2.0! Any help please? The rest of the examples are straight forward, but as I mentioned, they all run off of $gdclient, which I have been unable to set so far.

Blogger API Tutorials: http://code.google.com/apis/blogger/docs/1.0/developers_guide_php.html

OAuth 2.0: http://code.google.com/apis/accounts/docs/OAuth2.html

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌上青苔 2024-12-09 17:18:08

形成标题:3.c. ClientLogin用户名/密码认证

$user = '[email protected]';
$pass = 'secretPasswd';
$service = 'blogger';

$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service, null,
    Zend_Gdata_ClientLogin::DEFAULT_SOURCE, null, null,
    Zend_Gdata_ClientLogin::CLIENTLOGIN_URI, 'GOOGLE');
$gdClient = new Zend_Gdata($client);

form the heading: 3.c. ClientLogin username/password authentication

$user = '[email protected]';
$pass = 'secretPasswd';
$service = 'blogger';

$client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, $service, null,
    Zend_Gdata_ClientLogin::DEFAULT_SOURCE, null, null,
    Zend_Gdata_ClientLogin::CLIENTLOGIN_URI, 'GOOGLE');
$gdClient = new Zend_Gdata($client);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文