Hi,
I've been implementing OAuth 2.0 flow for my demonstration QR code application.
I am confused about the optional "nonce" parameter.
I had anyway planned to add a temporary secret to the `state` which is OAuth2 standard, and to validate against this state to prevent CSRF and prevent replay attacks.
However, I have read the documentation at https://developer.cisco.com/meraki/api-v1/oauth-overview/#oauth-20 .
This mentions a parameter
nonce (optional)
This is interesting, and I assumed could be used for a similar purpose, but the documentation never refers to this parameter or its purpose again.
How is this `nonce` used in the flow?
It does not appear to be attached as a parameter to the callback, what purpose does it have otherwise please?