1

我正在使用以下

http://www.ibm.com/developerworks/opensource/library/x-phpgooglecontact/index.html

向 Google 进行身份验证并检索用户联系人。不过,我更希望这个系统使用 Google 的 oAuth 集成。

最简单的方法是什么或一个简单的例子?

本质上我想修改这个

      $client = Zend_Gdata_ClientLogin::getHttpClient($user, $pass, 'cp');
  $gdata = new Zend_Gdata($client);
  $gdata->setMajorProtocolVersion(3);

  // perform query and get feed of all results
  $query = new Zend_Gdata_Query(
    'http://www.google.com/m8/feeds/contacts/default/full');
  $query->maxResults = 1000;
  $query->setParam('sortorder', 'descending');
  $feed = $gdata->getFeed($query);

这样它现在使用 oauth2,这样用户就不必提供他们的电子邮件或密码。

4

1 回答 1

0

我发现以下教程解决了我的问题。

http://leandroardissone.com/post/1330339821/google-contacts-php

于 2011-10-24T21:40:16.750 回答