使用 Python 在 Google App Engine (GAE) 上进行 Windows Live Web 身份验证
我正在努力使用 Python 在 Google App Engine (GAE) 上运行 Windows Live Web 身份验证,因为我对语言。
然而 Facebook 和 Twitter 的例子有很多,我想知道是否有人已经为 Windows Live 提出了解决方案?
I'm struggling to get Windows Live Web Authentication running on Google App Engine (GAE) using Python, as I'm quite new to the language.
However there are lots of examples for Facebook and Twitter, I was wondering if anyone had come up with a solution for Windows Live yet?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
据我所知,您所指的SDK仅用于身份验证,而不是授权。也就是说,它允许您通过 Windows Live ID 唯一地标识用户,但不能以编程方式导入其 Hotmail 联系人。
如果是这种情况,使用双方均已提供的内置 OpenID 支持会更容易。 Windows Live OpenID 提供程序是 OpenID.Live-INT.com;有关在 App Engine 上使用 OpenID 进行身份验证的说明,请访问 http://code.google。 com/appengine/articles/openid.html。
From what I can tell, the SDK you're referring to is just used for authentication, not authorization. That is, it allows you to uniquely identify a user by their Windows Live ID, but not, say, programmatically import their Hotmail contacts.
If this is the case, it would be easier to use the built-in OpenID support that's already available on both sides. The Windows Live OpenID provider is OpenID.Live-INT.com; instructions for authenticating using OpenID on App Engine can be found @ http://code.google.com/appengine/articles/openid.html.
我最终使用了 http://anyopenid.com 它为 openid 提供了一个很好的桥梁,我能够使用它与谷歌应用程序引擎。
I ended up using http://anyopenid.com which provides quite a good bridge to openid, and I was able to use this with Google App Engine.