什么是this站点的方法?他们的个人资料ID和信息是如何检索到的?
有没有适用于google+的Google API?
发布于 2011-07-10 22:21:32
事情就是这样开始的。我输入了大约30个个人资料。其余的是访问者手动添加的。
发布于 2011-07-12 21:59:58
我正在开发一个非官方的php api,它可以拉取公共资料和关系数据。你可以用它来做一些类似的事情。
这是GitHub上的源代码:https://github.com/jmstriegel/php.googleplusapi
在tests/plususer.php
中查看如何使用它的示例。
你基本上可以这样做:
$followees = PlusPerson::FetchVisiblePlusPeople( $googleplus_id );
$followers = PlusPerson::FetchIncomingPlusPeople( $googleplus_id );
...which将为您提供一个人的圈子中的人的数组,以及一个人圈子的数组。
发布于 2011-09-15 19:15:09
https://stackoverflow.com/questions/6643220
复制相似问题