1

Ruby を使用して AdSense Management API にアクセスしようとしています。彼らは、汎用の Google-API クライアント ライブラリを使用することを推奨しています。

http://code.google.com/p/google-api-ruby-client/#Google_AdSense_Management_API

これはあまり役に立ちませんでした。エラーが発生しました。

google_drive と google-api-client でのファラデーの競合

AdSense データにアクセスするには、どこから始めればよいですか?

前もって感謝します。

4

1 に答える 1

3

残念ながら、AdSense Management API のサンプル コードはまだ用意されていません。ただし、ご指摘のとおり、クライアント ライブラリは汎用的であり、新しい Google API のいずれかと連携する必要があるため、他のサンプルの一部が役立つ場合があります。

特定の問題が発生している場合は、それらに焦点を当てた質問を作成し、それを私に指摘してください。できる限りお手伝いさせていただきます。

手始めに簡単なサンプルが必要な場合は、そのサンプルを作成できますが、発生している問題がクライアント ライブラリだけでなく、AdSense Management API 自体に関係していることを確認する必要があります。あなたがリンクしていた。

[編集] シナトラに基づいた簡単なサンプルを次に示します。

#!/usr/bin/ruby
require 'rubygems'
require 'sinatra'
require 'google/api_client'

FILENAME = 'auth.obj'
OAUTH_CLIENT_ID = 'INSERT_OAUTH2_CLIENT_ID_HERE'
OAUTH_CLIENT_SECRET = 'INSERT_OAUTH2_CLIENT_SECRET_HERE'

before do
  @client = Google::APIClient.new
  @client.authorization.client_id = OAUTH_CLIENT_ID
  @client.authorization.client_secret = OAUTH_CLIENT_SECRET
  @client.authorization.scope = 'https://www.googleapis.com/auth/adsense'
  @client.authorization.redirect_uri = to('/oauth2callback')
  @client.authorization.code = params[:code] if params[:code]

  # Load the access token here if it's available
  if File.exist?(FILENAME)
    serialized_auth = IO.read(FILENAME)
    @client.authorization = Marshal::load(serialized_auth)
  end
  if @client.authorization.refresh_token && @client.authorization.expired?
    @client.authorization.fetch_access_token!
  end
  @adsense = @client.discovered_api('adsense', 'v1.1')
  unless @client.authorization.access_token || request.path_info =~ /^\/oauth2/
    redirect to('/oauth2authorize')
  end
end

get '/oauth2authorize' do
  redirect @client.authorization.authorization_uri.to_s, 303
end

get '/oauth2callback' do
  @client.authorization.fetch_access_token!
  # Persist the token here
  serialized_auth = Marshal::dump(@client.authorization)
  File.open(FILENAME, 'w') do |f|
    f.write(serialized_auth)
  end
  redirect to('/')
end

get '/' do

  call = {
    :api_method => @adsense.reports.generate,
    :parameters => {
      'startDate' => '2011-01-01',
      'endDate' => '2011-08-31',
      'dimension' => ['MONTH', 'CUSTOM_CHANNEL_NAME'],
      'metric' => ['EARNINGS', 'TOTAL_EARNINGS']
    }
  }

  response = @client.execute(call)
  output = ''

  if response && response.data && response.data['rows'] &&
      !response.data['rows'].empty?
    result = response.data

    output << '<table><tr>'
    result['headers'].each do |header|
      output << '<td>%s</td>' % header['name']
    end
    output << '</tr>'

    result['rows'].each do |row|
      output << '<tr>'
      row.each do |column|
        output << '<td>%s</td>' % column
      end
      output << '</tr>'
    end

    output << '</table>'
  else
    output << 'No rows returned'
  end

  output
end
于 2012-07-25T22:52:14.800 に答える