我想沒有的Oauth訪問谷歌的API客戶端(紅寶石).. 我發現這個信息的Oauth(只是API密鑰):如何訪問谷歌的客戶端API不
http://thecodeabode.blogspot.com.au/2012/07/google-api-ruby-client-authorizing-with.html
但不幸的是,如果我按照說明進行操作(這是我做的):
require 'google/api_client'
client = Google::APIClient.new(:key => "MYKEY",:authorization => nil)
yt = client.discovered_api("youtube", "v3")
result = client.execute(
:api_method => yt.search.list,
:parameters => {
:key => "MYKEY",
:q => "dogs",
:part => "topicDetails"
}
)
我得到對未驗證的使用超出
「每日限制孔蒂。裸使用需要註冊「
出了什麼問題?
沒有它新鮮的API,配額是不錯的。它還表示「未經驗證」使用,這表明基於密鑰的登錄沒有發生。但是,如何在沒有oauth的情況下登錄> – Stpn