我有一个ASP.NET MVC5应用程序,它通过Instasharp使用instagram。在获得Instagram批准后,我的应用程序甚至工作了2周。但突然停止工作,并通过使用instasharp逐行检查我发现,当我想通过运行下面的代码获取访问代码时,我从Instagram获得代码后,我从Instagram获得null值。
...
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。 我尝试过但没有帮助我的解决方案是:
请帮助我解决这个问题。:(
答案 0 :(得分:0)
尝试根据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");
}