We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is this possible? To use the 'Key for browser apps (with referers)'
I dont want to use oauth as I want reports created on behalf of users automatically, not users interacting with OAuth.
The Username/Password combo is fickle, as invalid login attempts for google analytics website can result in blocking API access.
The text was updated successfully, but these errors were encountered:
Quick fix, put this in an initialiser.
module Garb module Request class Data def query_string @parameters.merge!("key" => "PUT API KEY HERE") parameter_list = @parameters.map {|k,v| "#{k}=#{v}" } parameter_list.empty? ? '' : "?#{parameter_list.join('&')}" end end end end
Sorry, something went wrong.
Is there a way to do this now without monkey patching? I think you need an API key now to increase your limits.
No branches or pull requests
Is this possible? To use the 'Key for browser apps (with referers)'
I dont want to use oauth as I want reports created on behalf of users automatically, not users interacting with OAuth.
The Username/Password combo is fickle, as invalid login attempts for google analytics website can result in blocking API access.
The text was updated successfully, but these errors were encountered: