I have a weird problem in ionic app, in iOS is working without problem but in android the code is wrong.
The only difference I notice is the locale in the two responses:
iOS:
https://[url]?code=[code]&locale=es_419&userState=Authenticated
This code is working.
Android
https://[url]?code=[code]&locale=en_US&userState=Authenticated
This code is not working
I pass this code to oauth2/token in the same way, but in Android es responding:
{"error":"invalid_request","error_description":"Invalid Authorization Code","error_reason":"auth_code_not_found"}
I try to add locale in oauth2/authorize but the response is the same.