我想从 Windows 商店应用程序中的 instagram api 获取访问令牌
这是我的代码:
string endURL = "ms-app://.."; string clientID = "..";
Uri endUri = new Uri(endURL);
string startURL = "https://api.instagram.com/oauth/authorize/?"
+ "client_id=" + clientID
+ "&redirect_uri=" + endURL
+ "&response_type=code";
try
{
WebAuthenticationResult result = await WebAuthenticationBroker.AuthenticateAsync
(WebAuthenticationOptions.None, startUri);
if (result.ResponseStatus == WebAuthenticationStatus.Success) {
string token = webAuthenticationResult.ResponseData;
}
catch(Exception) { }
我得到那个错误:
指定的协议未知。(来自 HRESULT 的异常:0x800C000D)