skip to Main Content

Google OAuth token request returns "invalid_client": "Unauthorized" – Twitter API

Trying to get OAuth2 Google login working, this is the raw request that my app makes: Method: POST URL: https://www.googleapis.com/oauth2/v3/token Headers: Content-Type: application/x-www-form-urlencoded Values: client_id: XXX-0123456789abcdef0123456789abcdef.apps.googleusercontent.com client_secret: A1b2C3d4E5f6G7h8I9j0K1l2M code: 1/A1b2C3d4E5f6G7h8I9j0K1l2M3n4O5p6Q7r8S9t0U1v grant_type: authorization_code redirect_uri: http://localhost:5000/callback/google/ And this is the response: Status:…

VIEW QUESTION
Back To Top
Search