I am trying to follow OAuth2 public flow and no matter what I do, I receive the following back:
JSON:
Here's my code in generating the verify and challenge (it's in dart):
Code:
Read more
Читать далее...
JSON:
Код:
{
"errors": [
{
"code": "invalid_grant",
"message": "provided_code_verifier_does_not_match_code_challenge",
"params": []
}
]
}
Here's my code in generating the verify and challenge (it's in dart):
Code:
Код:
// Generate a random code verifier
String _generateCodeVerifier() {
final random = Random.secure();
final values =...
Read more
Читать далее...