Skip to content

Commit 1601c61

Browse files
committed
Update JWT example
1 parent 31a7878 commit 1601c61

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

README.md

+13-10
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,19 @@ Most interactions with Google APIs require users to authorize applications via O
8080

8181
Credentials can be managed at the connection level, as shown, or supplied on a per-request basis when calling `execute`.
8282

83-
For server-to-server interactions, like those between a web application and Google Cloud Storage, Prediction, or BigQuery APIs, use service accounts. Assertions for service accounts are made with `Google::APIClient::JWTAsserter`.
84-
85-
client = Google::APIClient.new
86-
key = Google::APIClient::PKCS12.load_key('client.p12', 'notasecret')
87-
service_account = Google::APIClient::JWTAsserter.new(
88-
89-
'https://www.googleapis.com/auth/prediction',
90-
key)
91-
client.authorization = service_account.authorize
92-
83+
For server-to-server interactions, like those between a web application and Google Cloud Storage, Prediction, or BigQuery APIs, use service accounts.
84+
85+
key = Google::APIClient::KeyUtils.load_from_pkcs12('client.p12', 'notasecret')
86+
client.authorization = Signet::OAuth2::Client.new(
87+
:token_credential_uri => 'https://accounts.google.com/o/oauth2/token',
88+
:audience => 'https://accounts.google.com/o/oauth2/token',
89+
:scope => 'https://www.googleapis.com/auth/prediction',
90+
:issuer => '[email protected]',
91+
:signing_key => key)
92+
client.authorization.fetch_access_token!
93+
client.execute(...)
94+
95+
9396
### Batching Requests
9497

9598
Some Google APIs support batching requests into a single HTTP request. Use `Google::APIClient::BatchRequest`

0 commit comments

Comments
 (0)