我有一个通过Instasharp使用instagram的ASP.NET MVC5应用程序。我的应用程序在被Instagram批准后的两周内仍然运行良好。但是突然停止工作,并使用instasharp通过逐行检查代码,我发现从instagram接收代码后,当我想通过运行以下代码获取访问代码时,我从instagram中获取了空值。
...
var config = InstagramInfo.Info.Config;
var auth = new OAuth(config);
var instagramauthInfo = await auth.RequestToken(code);
....
aut.RequestToken(code)返回null。
即使当我使用代码的OAuth.ResponseType.Token instad时,在验证并重定向到RedirectUrl后,它也会从instagram中完全返回null。
我尝试过但没有帮助我的解决方案是:
请帮我解决这个问题。
最佳答案
尝试根据https://github.com/InstaSharp/InstaSharp/tree/master/src/InstaSharp.Sample.Mvc检查您的代码并更改OAuth方法。它应该工作。
public async Task<ActionResult> OAuth(string code)
{
var values = new Dictionary<string, string>
{
{ "client_id", config.ClientId },
{ "client_secret", config.ClientSecret },
{ "grant_type", "authorization_code" },
{ "redirect_uri", config.RedirectUri },
{ "code", code }
};
var content = new FormUrlEncodedContent(values);
var response = await new HttpClient().PostAsync("https://api.instagram.com/oauth/access_token", content);
if (!response.IsSuccessStatusCode)
throw new Exception("Auth failed");
var responseString = await response.Content.ReadAsStringAsync();
dynamic data = System.Web.Helpers.Json.Decode(responseString);
var oauthResponse = new OAuthResponse
{
AccessToken = data.access_token,
User = new InstaSharp.Models.UserInfo
{
FullName = data.user.full_name,
Id = long.Parse(data.user.id),
ProfilePicture = data.user.profile_picture,
Username = data.user.username
}
};
Session.Add("InstaSharp.AuthInfo", oauthResponse);
return RedirectToAction("Index");
}
关于oauth - instasharp中的oAuth.RequestToken(code)无法正常工作并返回null,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38991566/