2
我已經擁有與我的應用程序一起工作的登錄名(OAuth),我現在要做的就是拉下經過身份驗證的用戶的活動列表(例如狀態提要)。將Google Plus與Rails集成
的用戶進行身份驗證來拉這個名單下來他們的事後的選項,這裏是我的代碼,迄今:
# 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
這是我一直運行到(從鐵軌控制檯)的問題
#<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 ...任何原因,爲什麼這不起作用?