我正在嘗試使用google-api-ruby-client獲取activeVisitors。該客戶端被列在實時谷歌分析API文檔here中,但是我沒有在關於將其用於實時API的文檔中看到任何內容。Ruby實時谷歌分析API
我看到了函數discovered_api,但是我沒有看到API名稱的posisble參數列表。
用於定期分析API例子:
# Get the analytics API
analytics = client.discovered_api('analytics','v3')
有誰知道如何使用該客戶端來獲取實時的活躍訪客?
這裏是代碼我想使用:
require 'google/api_client'
require 'date'
# Update these to match your own apps credentials
service_account_email = '[email protected]' # Email of service account
key_file = '/path/to/key/privatekey.p12' # File containing your private key
key_secret = 'notasecret' # Password to unlock private key
profileID = '111111111' # Analytics profile ID.
# Get the Google API client
client = Google::APIClient.new(:application_name => '[YOUR APPLICATION NAME]',
:application_version => '0.01')
# Load your credentials for the service account
key = Google::APIClient::KeyUtils.load_from_pkcs12(key_file, key_secret)
client.authorization = Signet::OAuth2::Client.new(
:token_credential_uri => 'https://accounts.google.com/o/oauth2/token',
:audience => 'https://accounts.google.com/o/oauth2/token',
:scope => 'https://www.googleapis.com/auth/analytics.readonly',
:issuer => service_account_email,
:signing_key => key)
# Start the scheduler
SCHEDULER.every '1m', :first_in => 0 do
# Request a token for our service account
client.authorization.fetch_access_token!
# Get the analytics API
analytics = client.discovered_api('analytics','v3')
# Execute the query
visitCount = client.execute(:api_method => analytics.data.ga.get, :parameters => {
'ids' => "ga:" + profileID,
'metrics' => "ga:activeVisitors",
})
# Update the dashboard
send_event('current_visitors', { current: visitCount.data.rows[0][0] })
end
返回錯誤:
Missing required parameters: end-date, start-date.
皮特男人!這工作。 – joshmmo