【问题标题】:Instagram OAuth Provider - Authentication issueInstagram OAuth 提供商 - 身份验证问题
【发布时间】:2018-08-26 02:32:13
【问题描述】:

我正在尝试使用 Instagram 作为 .Net Core 2.0 应用程序中的外部登录提供程序进行身份验证。 我的中间件配置如下所示: 启动.cs

services.AddAuthentication().AddInstagram(options =>
{
   options.ClientId = ApplicationSettings.InstagramSettings.ApplicationId;
   options.ClientSecret =ApplicationSettings.InstagramSettings.ApplicationSecret;
   options.Scope.Add(ApplicationSettings.InstagramSettings.Permissions);
   options.SaveTokens = true; 
});

AccountController 中的ExternalLogin 方法不变:

    [HttpPost]
    [AllowAnonymous]
    [ValidateAntiForgeryToken]
    public IActionResult ExternalLogin(string provider, string returnUrl = null)
    {
        // Request a redirect to the external login provider.
        var redirectUrl = Url.Action(nameof(ExternalLoginCallback), "Account", new { returnUrl });
        var properties = _signInManager.ConfigureExternalAuthenticationProperties(provider, redirectUrl);

        return Challenge(properties, provider);
    }

然而,当

var info = await _signInManager.GetExternalLoginInfoAsync();

在 ExternalLoginCallback() 中调用,结果为 null。

注意:

  • 这对于 Facebook 提供商来说非常适用,中间件配置中没有其他设置。
  • 如果我在 Fiddler 中检查网络活动,我可以看到 Instagram 成功地将 access_token 发送回我的应用程序,只是 GetExternalLoginInfoAsync() 无法读取它。

有什么想法吗?

【问题讨论】:

    标签: c# asp.net-core-2.0 instagram-api


    【解决方案1】:

    我使用的 Instagram OAuth 提供程序版本 (2.0.0-rc2-final) 中存在一个错误,该错误会阻止正确处理用户信息响应。 我切换到修复了错误的包的最新 RTM nightly 版本。

    【讨论】:

      猜你喜欢
      • 2019-08-11
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2017-02-08
      • 1970-01-01
      • 1970-01-01
      • 2013-06-09
      相关资源
      最近更新 更多