Link to Github Repo
[arvados.git] / README.md
index 983f43c5a39e0b4a66baf0a47957a72f080dfe28..76e374ea3d35497131fae2856c4a02f43b861ee8 100644 (file)
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ APIs.
 
 ## Install
 
-Be sure `http://rubygems.org/` is in your gem sources.
+Be sure `https://rubygems.org/` is in your gem sources.
 
 For normal client usage, this is sufficient:
 
@@ -30,6 +30,7 @@ $ gem install google-api-client
 ```ruby
 require 'google/api_client'
 require 'google/api_client/client_secrets'
+require 'google/api_client/auth/installed_app'
 
 # Initialize the client.
 client = Google::APIClient.new(
@@ -106,6 +107,10 @@ client.authorization.fetch_access_token!
 client.execute(...)
 ```
 
+Service accounts are also used for delegation in Google Apps domains. The target user for impersonation is specified by setting the `:person` parameter to the user's email address
+in the credentials. Detailed instructions on how to enable delegation for your domain can be found at [developers.google.com](https://developers.google.com/drive/delegation).
+
+
 ### Batching Requests
 
 Some Google APIs support batching requests into a single HTTP request. Use `Google::APIClient::BatchRequest`
@@ -193,7 +198,7 @@ For more information, use `google-api --help`
 
 ## Samples
 
-See the full list of [samples on Google Code](http://code.google.com/p/google-api-ruby-client/source/browse?repo=samples).
+See the full list of [samples on Github](https://github.com/google/google-api-ruby-client-samples).
 
 
 ## Support