在Google+上阅读我的非公开信息

时间:2014-01-20 20:39:46

标签: php google-plus

我想构建一个PHP脚本,我需要登录才能阅读给定圈子的帖子。

我按照quick start page上的说明操作,因此我有权阅读数据,Google知道我是谁。必须有一些API来阅读我自己的帖子,请引导我找到我自己实现的正确参考。

如果无法做到这一点,是否可以按给定的哈希标记查找(我的)帖子?

2 个答案:

答案 0 :(得分:2)

  

Google+ API目前提供对公共数据的只读访问权限。

Google+ Docs

有一个feature request您可以加注星标以向Google表明您对此类API的兴趣。

答案 1 :(得分:1)

为了做到这一点,你应该做一些前期工作;

  1. 转到API Console
  2. 选择服务
  3. 启用Google+ API服务。
  4. 选择API访问
  5. 简单的API访问>抓住你的API密钥。
  6. 你可以用下面的php做到这一点;

    <?php
    
    $google_plus_id = '106670447018211124292';
    $appKey = 'app_key_here';
    $streams = json_decode(file_get_contents('https://www.googleapis.com/plus/v1/people/' . $google_plus_id . '/activities/public?key='. $appKey));
    
    foreach ($streams->items as $item) {
      echo $item->title .
        date('F jS Y @ H:i:s',strtotime($item->published)) .
        $item->object->content .
        '<br />';
    }
    

    您还可以在google api控制台上测试此代码的工作。

    1。)转到API Console并选择Google+ API

    2。)在左侧菜单中选择 API 菜单

    3。)点击该页面上的 public.activities.list

    enter image description here

    4。) userId 部分输入个人资料ID ,然后在集合部分输入“public”,然后点击执行。你可以在下面看到;

    enter image description here