instasharp中的oAuth.RequestToken(code)不起作用并返回null

时间:2016-08-17 08:23:49

标签: oauth instagram instasharp

我有一个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。 我尝试过但没有帮助我的解决方案是:

  1. 使用最新版本的Instasharp
  2. 使用Https(在Instagram位置的一部分,如果您不使用https,则表示某些情况可能会使用Null进行访问令牌)
  3. 在一个话题中有人说他设置了内容类型,我不知道在instasharp中设置内容类型的位置
  4. 请帮助我解决这个问题。:(

1 个答案:

答案 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");
      }