我正在尝试在没有 Oauth 的情况下访问 Google api 客户端(Ruby)。我找到了以下信息:
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"
}
)
我明白了
“已超过未经验证使用的每日限制。继续使用需要注册”
怎么了?