我在调用令牌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);
现在我想阅读回复的内容。我试过不同的选择没有运气。任何帮助表示赞赏