How to access Google client api without Oauth (just API key)
问题 I am trying to access Google api client (Ruby) without Oauth.. I have found this info: http://thecodeabode.blogspot.com.au/2012/07/google-api-ruby-client-authorizing-with.html But unfortunately, if I follow the instructions (Here is what I do): 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