0

我已按照此文档了解如何使用 azure 社交授权提供程序进行 google plus 登录。https://docs.microsoft.com/en-us/azure/app-service-mobile/app-service-mobile-how-to-configure-google-authentication

身份验证完成后,它将应用程序发送到此页面:https ://yourapp.azurewebsites.net/.auth/login/done

post_login_redirect_url 是一种重定向回您的 Web 应用程序并传递令牌的方法吗?

无论如何使用令牌重定向回您的静态 html 网站?

4

1 回答 1

0

在查看更多 post_login_redirect_url 之后,看起来这个参数的附加方式如下 /.auth/login/?post_login_redirect_url=/

然后,您可以从您的 url 中获取令牌,因为它存储在哈希值中。

这个问题很有帮助:How to set Azure Authentication custom login return url?

获取我找到的令牌的另一种方法是调用 /.auth/me 来取回您授权的令牌数组。

于 2017-05-28T14:03:48.257 回答