Go to file
Bob Aman 4fa30fc051 Changed discovery and directory methods to use the main code-path for generating requests. 2011-09-22 10:42:31 +03:00
bin Major update, primarily to add pagination support. 2011-07-29 18:07:04 -04:00
examples read 2011-08-02 17:06:06 -04:00
lib/google Changed discovery and directory methods to use the main code-path for generating requests. 2011-09-22 10:42:31 +03:00
spec Fixed issue with header/options ambiguity. 2011-08-02 16:20:54 -04:00
tasks Gem spec requires author to be supplied. 2011-08-02 14:39:46 -04:00
.gitignore Basic project skeleton. 2010-07-28 19:30:56 +00:00
CHANGELOG Updated CHANGELOG. 2011-05-12 20:23:12 +00:00
LICENSE Basic project skeleton. 2010-07-28 19:30:56 +00:00
README A significant update of the client functionality. 2011-05-04 11:44:35 +00:00
Rakefile Gem spec requires author to be supplied. 2011-08-02 14:39:46 -04:00

README

== APIClient

Homepage::  google-api-ruby-client[http://code.google.com/p/google-api-ruby-client/]
Authors::   Bob Aman (mailto:bobaman@google.com), Matt Pokrzywa (mailto:mattpok@google.com)
Copyright:: Copyright 2010 Google Inc.
License::   Apache 2.0

== Description

The Google API Ruby Client makes it trivial to discover and access supported
APIs.

== Example Usage

  # Initialize the client
  require 'google/api_client'
  require 'signet/oauth_1/client'
  client = Google::APIClient.new(
    :service => 'buzz',
    # Buzz has API-specific endpoints
    :authorization => Signet::OAuth1::Client.new(
      :temporary_credential_uri =>
        'https://www.google.com/accounts/OAuthGetRequestToken',
      :authorization_uri =>
        'https://www.google.com/buzz/api/auth/OAuthAuthorizeToken',
      :token_credential_uri =>
        'https://www.google.com/accounts/OAuthGetAccessToken',
      :client_credential_key => 'anonymous',
      :client_credential_secret => 'anonymous'
    )
  )
  client.authorization.fetch_temporary_credential!(
    :additional_parameters => {
      'scope' => 'https://www.googleapis.com/auth/buzz'
    }
  )
  redirect_uri = client.authorization.authorization_uri(
    :additional_parameters => {
      'domain' => client.authorization.client_credential_key,
      'scope' => 'https://www.googleapis.com/auth/buzz'
    }
  )
  # Redirect user here
  client.authorization.fetch_token_credential!(:verifier => '12345')

  # Discover available methods
  method_names = client.discovered_api('buzz').to_h.keys

  # Make an API call
  response = client.execute(
    'chili.activities.list',
    {'scope' => '@self', 'userId' => '@me', 'alt' => 'json'}
  )
  status, headers, body = response

== Install

Be sure both http://gems.github.com/ and http://rubygems.org/ are in your gem
sources.

For normal client usage, this is sufficient:

sudo gem install google-api-client

The command line interface, the example applications, and the test suite
require additional dependencies. These may be obtained with:

sudo gem install google-api-client --development --force --no-rdoc --no-ri