OAuth2使用Restsharp可移植实现

时间:2015-10-12 14:19:28

标签: visual-studio xamarin oauth-2.0 restsharp

我正在尝试在我的xamarin应用中对box.com进行身份验证。我正在使用Restsharp的便携版本。 Restsharp Portable

我成功获取authenticationCode以获取AccessToken。我试图通过以下方式获取令牌:

var client = new RestClient(new Uri(baseUrl));
var request = new RestRequest(
                string.Format("/api/oauth2/token"), HttpMethod.Post);

request.AddParameter("grant_type", "authorization_code");
request.AddParameter("code", AppInstance.Instance.boxAuthCode);
request.AddParameter("client_id", clientId);
request.AddParameter("client_secret", clientSecret);

var response = client.Execute<AccessToken>(request);

但是这段代码不起作用。我总是得到“回复:未知标识符”。我想念一下吗?

0 个答案:

没有答案