正在检索Google+社区活动列表

问题描述 投票:0回答:1

我正在使用google + api检索社区帖子列表。

$data = file_get_contents('https://www.googleapis.com/plus/v1/people/111449227367642341024/activities/public?key={YOUR_API_KEY}');
$response = json_decode($data, true);
echo '<pre>';
print_r($response); 

但它会抛出错误

无法打开流:HTTP请求失败! HTTP / 1.0 403禁止

我也通过api-key但仍然没有工作。

php codeigniter google-api google-plus
1个回答
1
投票

可能的问题第一:

Activities: list

列出特定用户的指定集合中的所有活动。

注意:111449227367642341024似乎不是有效的Google+用户ID,因此不起作用我将假设您更改了它

可能的问题二:

您发布的代码不包含您说已通过它的API密钥。

GET https://www.googleapis.com/plus/v1/people/111449227367642341024/activities/public?key={YOUR_API_KEY}

可能的问题三:

另外,请确保您在Google开发者控制台中启用了Google+ API。

© www.soinside.com 2019 - 2024. All rights reserved.