Windows Live Id OAuth 与 c#.net 中的开发环境
我只是想制作一个示例应用程序,通过它我可以通过 Windows Live Id OAuth 协议登录到我的网站。
我的应用程序(在网上下载了一个示例)运行良好。它会打开弹出窗口,我可以在其中提供 windows live Id 的凭据,然后重定向回我的帐户中提供的重定向 URL。
我注意到,当我提供实时 URL(比如说……myappp.sample.com)时,它会完美重定向。但是当我尝试输入 (http://localhost:52254/WebSite9/default.aspx) 时,我的帐户不支持此操作。 (错误 -> 您必须输入以 http:// 或 https:// 开头的有效域 - 不允许查询字符串。长度限制为 248 个字符。)
我的问题是,我如何使用它来测试整个事情都在我当地的环境中。因为它没有重定向回本地主机 URL。仅重定向到实时 URL。
有没有办法可以使用开发环境测试 Live Id OAuth?
I have just trying to make one sample application, by which I can login in to my website by Windows Live Id OAuth Protocol.
My application (Downloaded one sample available on net) is working fine. It opens the popup where i can supply my credential for windows live Id and then redirect back on the Redirection URL supplied in my account.
I noticed that when i supply live URL (lets say..... myappp.sample.com) it is redirect perfectly. But when i try to put (http://localhost:52254/WebSite9/default.aspx) this is not supported in my account.
(error -> You must enter a valid domain that begins with http:// or https:// - query strings are not allowed. Length is limited to 248 characters.)
My question is that, How can i use to test the whole thing in my local environment. Because it is not redirect back on localhost URL. Only redirection to Live URL.
Is there a way by which I can test the Live Id OAuth with development environment??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
东糕。 输入以下内容:
在实时应用程序页面中
http://www.anydomain.com/。然后将该域添加到指向 127.0.0.1 的计算机(或 Intranet dns 或其他)的主机文件中。
重定向只是发生在浏览器中的 302 重定向。
East cake. Put in something like:
http://www.anydomain.com/ in the live app page.
Then add that domain to the host file of your machine (or intranet dns or whatever) pointing to 127.0.0.1.
The redirection is just a 302 redirect that happens in the browser.