In order to implement OAuth process in my integration app, I followed this repo
Whenever the user authorize the app, the /oauth/callback route is triggered with the following request:
{error: 'server_error', error_description: 'Internal server error', state: 'abcde1234568'}
I double check the redirect_uri value, it is the same on the app settings, /start and /oauth/callback route. I don’t have the code parameter which, I guess, make the https://auth.monday.com/oauth2/token request fail.
What could be the reason that the request from monday server to “/oauth/callback” route is missing the authorization code?