79806443

Date: 2025-11-01 09:45:57
Score: 0.5
Natty:
Report link

The remainder of the OAuth2/OIDC ceremony, namely the exchange of the code for a token, is missing.

Your server needs to implement a Servlet with the path /Callback to process the callback provided in the callback_url.

The internal processing of http://localhost:8081/Callback?code=xxxxxxxxxxxxxxxxxx should make a call to https://accounts.google.com/o/oauth2/token with the code as a parameter.

The call to https://accounts.google.com/o/oauth2/token will return the JWT for later use for authorization by the client.

This is the missing step.

Reasons:
  • No code block (0.5):
  • Contains question mark (0.5):
  • Filler text (0.5): xxxxxxxxxxxxxxxxxx
  • High reputation (-1):
Posted by: John Williams