From 2e2df4904e82ac6e969d8cf111f61b2254602688 Mon Sep 17 00:00:00 2001 From: Kyle Carlton Date: Sun, 12 Mar 2023 13:19:33 -0500 Subject: [PATCH] update article --- content/nest-logger.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/content/nest-logger.md b/content/nest-logger.md index ed14acc..9a6d1c5 100644 --- a/content/nest-logger.md +++ b/content/nest-logger.md @@ -33,4 +33,14 @@ This [curl](https://curl.se/) request returns the access and refresh tokens (rep ```bash $ curl -L -X POST https://www.googleapis.com/oauth2/v4/token?client_id=${oauth2-client-id}&client_secret=${oauth2-client-secret}&code=${authorization-code}&grant_type=authorization_code&redirect_uri=https://www.google.com +``` + +```json +{ + "access_token": "ya29....", + "expires_in": 3599, + "refresh_token": "1//01...", + "scope": "https://www.googleapis.com/auth/sdm.service", + "token_type": "Bearer" +} ``` \ No newline at end of file