gpt4 book ai didi

c# - Windows Phone 中的 OAuth2 WebAuthenticationBroker 不会回调到 ContinuationManager

转载 作者:行者123 更新时间:2023-11-30 20:24:49 25 4
gpt4 key购买 nike

我在我的 Windows Phone 8.1 应用程序中执行 OAuth2 身份验证,我正在使用 WebAuthenticationBroker 和 WP 的 AuthenticateAndContinue() 方法。
我正在向我的服务器进行身份验证,我在其中发送两个参数并返回我的访问 token ,中间没有任何其他步骤。鉴于这种情况,我没有 callbakUri,所以我使用 WebAuthenticationBroker.GetCurrentApplicationCallbackUri()

我的代码如下所示:

Uri endpointURL = new Uri(_requestUrl + "&client_id=" + clientId + "&client_secret=" + clientSecret);
Uri callbackUri = WebAuthenticationBroker.GetCurrentApplicationCallbackUri();
WebAuthenticationBroker.AuthenticateAndContinue(endpointURL, callbackUri, null, WebAuthenticationOptions.None);

我的项目中有 ContinuationManager.cs 类,以及 App.xaml.cs 中所需的所有更改,如下所述:http://msdn.microsoft.com/en-us/library/dn631755.aspx

我的问题是,在我执行上面的代码后,ContinuationManager 类中的 Continue() 方法从未执行过,所以我的应用程序阻塞在那里。

我在这里遗漏了什么吗?

最佳答案

WebAuthenticationBroker.AuthenticateAndContinue 知道当用户被重定向到特定页面时身份验证已完成。

有两种处理方式:

  1. 大多数服务接受一个参数来设置用户重定向到的 URI(该参数通常称为 callback。在这种情况下,您可以使用 WebAuthenticationBroker 生成 URI。 GetCurrentApplicationCallbackUri 并将其传递给 WebAuthenticationBroker.AuthenticateAndContinue 方法(正如您在代码示例中所做的那样)

  2. 如果服务不接受回调参数,那么您需要以另一种方式做事:首先检查服务也重定向了哪些 URI(通过手动调用一次),然后将此 URI 传递给 WebAuthenticationBroker.AuthenticateAndContinue 方法。例如,假设 OAuth 服务重定向到 http://www.stackoverflow.com ,那么你需要调用:

    WebAuthenticationBroker.AuthenticateAndContinue(endpointURL, new Uri("http://www.stackoverflow.com"), null, WebAuthenticationOptions.None);

关于c# - Windows Phone 中的 OAuth2 WebAuthenticationBroker 不会回调到 ContinuationManager,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25910884/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com