如何阅读Oauth的回复

时间:2018-03-07 12:06:09

标签: c# api oauth access-token

我在调用令牌API后得到响应,

如何阅读回复的内容?

这是获取令牌的代码,可以使用

 var client = new RestClient("http://localhost:54580/token");
 var oAuthRequest = new RestRequest(Method.POST);      
 oAuthRequest.AddHeader("content-type", "application/x-www-form-urlencoded");
 oAuthRequest.AddParameter("application/x-www-form-urlencoded", "grant_type=password&username=kas1@sample.com&password=Kas12345", ParameterType.RequestBody);

响应消息来到这里,

IRestResponse response = client.Execute(oAuthRequest);

现在我想阅读回复的内容。我试过不同的选择没有运气。任何帮助表示赞赏

0 个答案:

没有答案