openid

List of available attributes for http://axschema.org and http://schemas.openid.net

北城以北 提交于 2019-12-03 02:29:04
问题 I have searched high, low, far and wide but can not find anything on the Internet that lists the available attributes for these schemas. Does anyone know where the documentation is for these? so far I know of: http://axschema.org/namePerson/first http://axschema.org/namePerson/last http://axschema.org/contact/email http://schemas.openid.net/ax/api/user_id 回答1: Well I cannot see axschema.org online anymore. But based on http://groups.google.com/group/axschema/browse_thread/thread

DotNetOpenAuth: Message signature was incorrect

匿名 (未验证) 提交于 2019-12-03 02:24:01
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm getting a "Message signature was incorrect" exception when trying to authenticate with MyOpenID and Yahoo. I'm using pretty much the ASP.NET MVC sample code that came with DotNetOpenAuth 3.4.2 public ActionResult Authenticate ( string openid ) { var openIdRelyingParty = new OpenIdRelyingParty (); var authenticationResponse = openIdRelyingParty . GetResponse (); if ( authenticationResponse == null ) { // Stage 2: User submitting identifier Identifier identifier ; if ( Identifier . TryParse ( openid , out identifier )) { var

Which openid / oauth library to connect a django project to Google Apps Accounts?

眉间皱痕 提交于 2019-12-03 02:18:30
问题 I'm working on an intranet django project (not using GAE) for a company that uses Google Apps for login. So I'd like my users to be able to log in to my django project using their google accounts login. OpenID seems appropriate, although maybe Oauth might work too? I see a lot of similarly named libraries out there to connect django's auth system to external login systems: django-authopenid - http://bitbucket.org/benoitc/django-authopenid django-openid - http://github.com/simonw/django-openid

Steam API Authentication

匿名 (未验证) 提交于 2019-12-03 02:11:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: Before I get started, let me say I know absolutely nothing about OpenID. I don't even want to do what OpenID is used for, but I imagine people will mention it, but thats not what I'm looking for. I have software. That software requires users to provide their Steam Username when they register. They are not signing on through Steam, just providing their username so that others know their steam username. So there is no need for OpenID. I know, I can simply just add a text field and have them list their Steam username and call it a day. However,

Steam OpenId in MVC application

匿名 (未验证) 提交于 2019-12-03 01:59:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I have never done an openid application before. I did see that MVC 5 has some built in oauth sign ins. I was able to get these to work no problem, as they are already built. But I am completely unsure how to get the steam openid to work in MVC. Does anyone have some sample code of there MVC Steam OpendID stuff? Or does anyone know a good tutorial for this? 回答1: Go to Tools > Library Package Manager > Package Manager Console and type: Install-Package Owin.Security.Providers Open your App_Start\Startup.Auth.cs, and add: using Owin.Security

Why does the ID of Google's OpenID implementation change?

孤者浪人 提交于 2019-12-03 01:56:58
I'm trying to implement OpenId login for a web application. Whenever new user who logs in via OpenId I create a new user on the sustem, and among the data I store their openid URL, so that next time they login with that user. I'm testing this with my Gmail OpenID, and the problem is that everytime I do this, Google sends a different openid URL, that is, https://www.google.com/accounts/o8/id?id=SomethingThatChangesFromTimeToTime Of course I'm then not able to tell wheter this is or not a new user. I'm a bit puzzled: shouldn't the openid identifier always remain the same? SztupY Google's OpenID

Rails 3 authentication with OpenID, Twitter or Facebook

倖福魔咒の 提交于 2019-12-03 01:30:55
问题 Can you suggest some working example of it? I tried Authlogic and Devise withous success. 回答1: UPDATE - June 2011 - I have been using the omniauth gem recently and I think it is a better solution than using the gems suggested in this answer. It works well with Devise and will give you everything you need in one gem. I created an engine that combines Devise and Omniauth and adds a controller to handle the callbacks. I have quite a few changes planned for the gem and right now I don't consider

OpenID support for Ruby on Rails application

笑着哭i 提交于 2019-12-03 01:22:04
问题 What is current state of the art for enabling OpenID login in Ruby on Rails applications? This is a community wiki with up-to-date answers to this question. Authlogic The most advanced authentication solution seems to be Authlogic. It supports OpenID with Authlogic OpenID plugin. It supports Rails 4 and 3. Rails 2 is supported in the rails2 branch. You may want to watch "OpenID with Authlogic" railscast (and the "Authlogic" railscast). There is a sample application called Authlogic OpenID

Register in gerrit with OpenID failed

匿名 (未验证) 提交于 2019-12-03 01:22:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I'm trying to setup the gerrit these days,but when it comes to Register with OpenID,there is always a problem " Provider is not supported, or was incorrectly entered." I have seen the same question on OpenID with Gerrit not working i didn't find the answer.If this is a bug in previous version,My gerrit version is gerrit-1.2.1.6 and it shouldn't have the bug. I noticed that in my corporation my IP address is private 10.238.151.109,and I set the canonical URL like this http://10.238.151.109:8080,then I can access gerrit server in the local

How to use OpenID in RESTful API?

匿名 (未验证) 提交于 2019-12-03 01:10:02
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 由 翻译 强力驱动 问题: I'm building Pylons-based web application with RESTful API, which currently lacks any authentication. So I'm going to implement that and in order to avoid all the trouble and caution with storing user passwords, I'd like to use OpenID for authentication. What would be the best way to do this? Are these two things compatible? Are there existing REST APIs that use OpenID that I can take inspiration from? 回答1: I've now spent some time researching the options and would like to summarize the findings. First, a little bit more context --