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

Retrieving list of Google+ comunity activites

我正在使用 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); 

但它会抛出类似

的错误

Failed to open stream: HTTP request failed! HTTP/1.0 403 Forbidden

我也通过了 api-密钥,但仍然无法正常工作。

第一个可能的问题:

Activities: list

List all of the activities in the specified collection for a particular user.

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

第二个可能的问题:

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

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

可能的问题三:

还要确保在 google 开发人员控制台中启用了 Google+ API。