我有一个通过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。
我尝试过但没有帮助我的解决方案是:
  • 使用最新版本的Instasharp
  • 使用Https(在Instagram位置的一部分中,在某些情况下,如果您不使用https,则表示instagram可能会删除Null以获得访问 token )
  • 在一个主题中有人说他设置了内容类型,但我不知道在instasharp中设置内容类型

  • 请帮我解决这个问题。

    最佳答案

    尝试根据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/

    10-11 13:34