我已经有了与我的应用程序一起使用的登录 (OAuth) 部分,我现在要做的是拉下经过身份验证的用户的活动列表(例如,状态提要)。
用户可以选择在他们经过身份验证后拉下这个列表,这是我的代码,到目前为止:
# User Model
def gplus
auth = authorizations.find_by_provider("gplus")
client = Google::APIClient.new(application_name: "AppName", application_version: '1.0', authorization: nil)
plus = client.discovered_api('plus', 'v1')
result = client.execute(
key: API["gplus"][Rails.env]["secret"],
api_method: plus.people.get,
parameters: { 'collection' => 'public', 'userId' => 'me' }
)
return result.data
end
这是我一直遇到的问题(来自rails控制台)
#<Google::APIClient::Schema::Plus::V1::Person:0x3fe649ed04bc
DATA:{"error"=>{"errors"=>[{"domain"=>"usageLimits", "reason"=>"keyInvalid", "message"=>"Bad Request"}], "code"=>400, "message"=>"Bad Request"}}>
我正在使用https://github.com/google/google-api-ruby-client ... 为什么这不起作用?