Google API - OAuth 2.0 - Get AccessToken and Refresh Token Part-1

URL: Please watch all video related to Gmail Automation : code : ? scope=& access_type=offline& redirect_uri=http://localhost& response_type=code& client_id=[Client ID] 2. Get access_token and refresh_token curl \ --request POST \ --data “code=[Authentcation code from authorization link]&client_id=[Application Client Id]&client_secret=[Application Client Secret]&redirect_uri=http://localhost&grant_type=authorization_code“ \ new access_token using refresh_token curl \ --request POST \ --data “client_id=[your_client_id]&client_secret=[your_client_secret]&a
Back to Top