when the below request comes to my provider, the provider should generate the code and send it back how can I generate this code in asp.net c# .
client_id=11111
response_type=code
scope=
redirect
state=state-22222
response :
Code:?
when the below request comes to my provider, the provider should generate the code and send it back how can I generate this code in asp.net c# .
client_id=11111
response_type=code
scope=
redirect
state=state-22222
response :
Code:?
Here is the sample request
https://<is-domain>:<id-host>/oauth2/authorize?response_type=code&client_id=<client-id>&redirect_uri=<redirect-uri>&scope=<scope>&state=<state>
You can refer this to open a browser from your C# application.