RingCentral .Net SDK
|
This extension provides utility methods to build URI for OAuth authorization purpose.
Please refer to the TypeScript SDK documentation for more information. These two SDKs are very similar.
In short, when you invoke the BuildUri
method, if you can pass in a code_challenge_method
property with value "S256"
, the method will auto generate codeVerifer
and code_challenge
for you. codeVerifier is accessible via authorizeUriExtension.codeVerifier
after the method is called. code_challenge
is included in the URI.
This extension is inspired by its TypeScript counterpart , check its documentation for more information.