4

I am new to google oath ,

Referring to the documentation of google

While i Generate the login URL example

https://accounts.google.com/o/oauth2/auth?
redirect_uri=http://www.mywebapp.com/oauth2callback&
response_type=code&
client_id=104608secret-secret-secret-secret.apps.googleusercontent.com&
scope=https://www.googleapis.com/auth/analytics.readonly+https://www.googleapis.com/auth/userinfo.email&
approval_prompt=force&
access_type=offline

This redirects to an accept page showing google email Id

When the user clicks on “Accept” google will redirect the user to your given redirect_url

when i use chrome and https://developers.google.com/oauthplayground/ Because it redirects screen to accept. everything will work fine.

But when i use postman it wont return the "access code" of google

What am i making wrong in the url parameters .

I have to create rest service using the above url.

I have searched So for How to get dummy google access token to test oauth google api? How can I verify a Google authentication API access token? https://developers.google.com/identity/protocols/OAuth2 https://www.themarketingtechnologist.co/google-oauth-2-enable-your-application-to-access-data-from-a-google-user/

But non explained about silent login to get token without accept screen

KishanCS
  • 1,357
  • 1
  • 19
  • 38

1 Answers1

0

Your callback url receives a "code".

Then you need to exchange your "code" for an access token.

https://aaronparecki.com/oauth-2-simplified/

https://developers.google.com/oauthplayground/

https://developers.google.com/identity/protocols/oauth2

Matt Wright
  • 102
  • 1
  • 4