如何使用 python 从 Google+ REST API 获取流?

How to get stream from Google+ REST API using python?

我一直在浏览 Google Plus APIs,但我似乎无法弄清楚是否有可能获得我拥有的所有这些人的帖子(提要)流圆圈。

我已经通读了 Google+ API 文档,甚至尝试了 Google 的 API 资源管理器,但似乎无法弄清楚该怎么做它。

这是任何 API 的一个非常重要的功能,它确实不应该在我的页面上自动流式传输。

查看 https://developers.google.com/+/api/latest/people/list

GET https://www.googleapis.com/plus/v1/people/me/people/connected

import requests
import json

r = requests.get('https://www.googleapis.com/plus/v1/people/me/people/connected')

input_log = json.loads(r.text)