WebAuthenticationBroker似乎无法处理我ms-app://
的导航。只是抛出这个丑陋的错误,如下所示。
AuthenticateAsync()
,包括在运行时获得的回调uri:WebAuthenticationBroker.GetCurrentApplicationCallbackUri()
"The specified protocol is unknown. (Exception from HRESULT: 0x800C000D)"
收到WebAuthenticationBroker.AuthenticateAsync()
的回调(根据Fiddler4&事件查看器),但它会抛出上述异常,就像它不知道如何解释ms-app://
协议一样。
所有示例都暗示我的代码应该有效,但我认为不太明显会导致问题。
private static string authorizeString =
"https://api.imgur.com/oauth2/authorize?client_id=---------&response_type=token";
private Uri startUri = new Uri(authorizeString);
public async void RequestToken() {
try {
var war = await WebAuthenticationBroker.AuthenticateAsync(
WebAuthenticationOptions.UseTitle
, startUri);
// Imgur knows my redirect URI, so I am not passing it through here
if (war.ResponseStatus == WebAuthenticationStatus.Success) {
var token = war.ResponseData;
}
} catch (Exception e) { throw e; }
}
有关我如何获得此信息的信息,请阅读以下MSDN:Web authentication problems (Windows)。不幸的是,这是查询 authhost.exe导航错误时唯一的搜索结果。
AuthHost redirected to URL: <ms-app://s-1-15-2-504558873-2277781482-774653033-676865894-877042302-1411577334-1137525427/#access_token=------&expires_in=3600&token_type=bearer&refresh_token=------&account_username=------> from URL: <https://api.imgur.com/oauth2/authorize?client_id=------&response_type=token> with HttpStatusCode: 302.
AuthHost encountered a navigation error at URL: <https://api.imgur.com/oauth2/authorize?client_id=------&response_type=token> with StatusCode: 0x800C000D.
AuthHost encountered Meta Tag: mswebdialog-title with content: <Can't connect to the service>.
感谢阅读,Stack。不要让我失望!
答案 0 :(得分:4)
Afaik,即使您假设远程服务知道它,您也需要将结束URL传递给AuthenticateAsync。
WebAuthenticationBroker的工作方式如下:指定“端点”URL,当遇到以此URL开头的链接时,它会认为身份验证过程已完成,甚至不再尝试导航到此URL。 因此,如果您将“foo:// bar”指定为回调URI,则导航到“foo:// bar”将完成身份验证,“foo:// barbaz”也将完成身份验证,但不会“foo:// baz”。< / p>
答案 1 :(得分:3)
解决! @ma_il帮助我理解了代理如何实际评估重定向回调,它让我回到原点,我意识到我认为WebAuthenticationOptions.UseTitle是正确的用法。 不是这样。使用令牌反对Imgur的API,它需要WebAuthenticationOptions.None
并且它立即起作用。
作为未来求职者的一个例子,这是我的代码。
private const string clientId = "---------";
private static Uri endUri = WebAuthenticationBroker.GetCurrentApplicationCallbackUri();
private static string authorizeString = "https://api.imgur.com/oauth2/authorize?"
+ "client_id="
+ clientId
+ "&response_type=token"
+ "&state=somestateyouwant"
+ "&redirect_uri="
+ endUri;
private Uri startUri = new Uri(authorizeString);
public async void RequestToken() {
try {
WebAuthenticationResult webAuthenticationResult =
await WebAuthenticationBroker.AuthenticateAsync(WebAuthenticationOptions.None
, startUri
, endUri);
if (webAuthenticationResult.ResponseStatus == WebAuthenticationStatus.Success) {
string token = webAuthenticationResult.ResponseData;
// now you have the token
}
} catch { throw; }
}