我使用google-api-client客戶端gem for ruby,並且每次調用API時都會出現403 Access Not Configured錯誤。Google API客戶端Rails
require 'google/api_client'
client = Google::APIClient.new
client.authorization = nil
search = client.discovered_api('customsearch')
response = client.execute(search.cse.list, 'key' => '<<MY KEY>>', 'cx' => '<<MY CX>>', 'alt' => 'json', 'q' => 'hello world')
我試圖搜索而不使用OAuth,只是API密鑰。
任何幫助,將不勝感激。謝謝!
沒有谷歌的API,需要SSL? – user749798
排序,是的。 OAuth 2作品,但它需要谷歌方面。這不是你遇到的問題。 –
謝謝。希望我能弄清楚我的問題是什麼。 – user749798