如何使用API​​获取Google +页面ID

时间:2013-12-11 06:48:37

标签: php api google-plus

我正面临使用googleplus API获取多个Google +网页ID的问题。

我使用php代码获取一个人的个人资料。

$me = $plus->people->get('me');

输出:

{
"kind": "plus#person",
"etag": "\"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\"",
"emails": [
{
"value": "xxxxxxxx@gmail.com",
"type": "account"
}
],
"urls": [
{
"value": "https://plus.google.com/b/112141871367245409492/112141871367245409492/",
"type": "contributor",
"label": "Finite Infotech"
}
],

在此输出中,我获得了Google +页面网址

https://plus.google.com/b/112141871367245409492/112141871367245409492/

我在google plus帐户上创建了两个不同的页面,但输出只显示了一个google plus页面网址。我需要两个使用api获取所有google plus页面网址。

如何使用google plus api获取其他网页网址或网页ID?

提前致谢

1 个答案:

答案 0 :(得分:0)

$me = $plus->people->get('me');一次只返回一个人/页面。 me是一个快捷方式,表示当前经过身份验证的帐户,在您的示例中,该帐户是其中一个页面。要使$me = $plus->people->get('me');适用于您的其他页面,请将身份验证更改为该页面。