OAuth redirects and service state
Is it possible for a redirect URI to convey some additional state that my service is waiting on? I wish to use this state to convey a request id so that my service only accepts the grant tokens that it expects.
Here is a sample request made to my browser - note the state parameter:
If I pass the state query parameter then Zoho complains with "ERROR_invalid_redirect_uri" in the browser. If I remove the query parameter then all appears well.
I understand that state is conventionally used by OAUTH for the purpose I seek.
Thanks for any help.