Google OAuth - Access token cannot be refreshed

@meisan I was able to successfully get access token using the below

{
"client_id": "enteryourclientid",
"client_secret": "enteryourclientsecret",
"authorize_url": "https://accounts.google.com/o/oauth2/auth",
"token_url": "https://oauth2.googleapis.com/token",
"options": {
	"scope": "https://mail.google.com/"
},
"token_type": "account"
} 

In your google project, add the below redirect URIs

http://localhost:10001/auth/callback?callback=http://localhost:10001/custom_configs?product= freshservice&product= freshservice

https://oauth.freshdev.io/auth/callback
2 Likes