Google Plus API,阅读Ruby中的一篇公开帖子

时间:2018-01-17 16:15:57

标签: ruby rest google-plus

我正在尝试阅读我在互联网上随机找到的公开帖子。该网址为:https://plus.google.com/107555023234041177814/posts/a5oZwq6h325

在所有情况下,尝试检索帖子的活动(a5oZwq6h325)会返回带有空消息的500。

这是GooglePlus API上的一个简单的#activitiess.get(activity_id)调用。我通过身份验证,令牌已刷新。

API文档中没有提供user_id的选项,如果这有用,我可以看到。

任何人都知道如何做到这一点?理想情况下,在Ruby中,但实际上是任何Google API客户端。

我正在使用标准的https://github.com/google/google-api-ruby-client google客户端。

这是我的代码:

    def client
      @client ||= begin
        c = ::Google::Apis::PlusV1::PlusService.new
        c.authorization = oauth_authorization.to_authorization
        c.authorization.refresh!
        c
      end
    end

    client.get_activity('a5oZwq6h325')

0 个答案:

没有答案