ruby に google-api-client client gem を使用していますが、API を呼び出すたびに 403 Access Not Configured エラーが発生します。
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 キーだけで検索しようとしています。
どんな助けでも大歓迎です。ありがとうございました!