Last active
December 18, 2024 16:33
-
-
Save teocomi/9b65f59de827435000a3 to your computer and use it in GitHub Desktop.
OAuth2 C# RestSharp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string url = "https://myurl.com"; | |
string client_id = "client_id"; | |
string client_secret = "client_secret"; | |
//request token | |
var restclient = new RestClient(url); | |
RestRequest request = new RestRequest("request/oauth") {Method = Method.POST}; | |
request.AddHeader("Accept", "application/json"); | |
request.AddHeader("Content-Type", "application/x-www-form-urlencoded"); | |
request.AddParameter("client_id", client_id); | |
request.AddParameter("client_secret", client_secret); | |
request.AddParameter("grant_type", "client_credentials"); | |
var tResponse = restclient.Execute(request); | |
var responseJson = tResponse.Content; | |
var token = JsonConvert.DeserializeObject<Dictionary<string,object>>(responseJson)["access_token"].ToString(); | |
return token.Length > 0 ? token : null; |
Thank you very much, helped me too!!
I am not sure why RestSharp has less to no documentation on usage.
Still helpful! Tks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you so much,... really saved my cookies here... whew... This was beating me up. Thanks again,... best regards JeanPierre (John) Fisher