I am working on authorization through OAuth 2.0 and I have configured my link as follows:
http://jira_link/rest/oauth2/latest/authorize?client_id=CLIENT_ID&redirect_uri=URL&response_type=code&scope=WRITE&code_challenge=CODE_CHALLANGE&code_challenge_method=S256
All the parameters are set correctly as defined here.
I generated my code challenge from this link.
Whenever I access this link using my browser, it leads me to the following error:
os_authType was 'any' and an invalid cookie was sent.
My WebApp is sending requests using SpringBoot. I am not finding any solution for this error.