OpenID endpoints

前端 未结 5 1056
醉梦人生
醉梦人生 2020-12-30 11:47

I would like to allow users to log in into my website with OpenID. So far I have integrated Google and Yahoo.

What other popular services are offering OpenID login

相关标签:
5条回答
  • 2020-12-30 11:54

    Here are some OpenId endpoints :

    • Google : https://www.google.com/accounts/o8/id
    • Google profile : http://www.google.com/profiles/~YOURUSERNAME
    • Yahoo : https://me.yahoo.com
    • AOL : https://www.aol.com
    • Wordpress : http://YOURBLOG.wordpress.com
    • LiveJournal : http://www.livejournal.com/openid/server.bml

    These following services are not OpenId providers and have their own authentication flow :

    • Facebook : see a Stackoverflow answer about how to implement Facebook authentication in PHP
    • Twitter : see a tutorial about how to implement Twitter authentication in PHP
    0 讨论(0)
  • 2020-12-30 12:03

    take a look what stackoverflow is offering.

    https://stackoverflow.com/users/login

    sadly no idea what urls you have to use, but a little choice what is popular so far.

    regards

    0 讨论(0)
  • 2020-12-30 12:06

    check out SocialAuth or JOpenId for some cool java-based APIs

    0 讨论(0)
  • 2020-12-30 12:19

    Well if you allow the user to input their own openID url then they can use ANY endpoint. That's the whole point of openID: if you support one endpoint, you support them all. Like StackOverflow, it is best to cover a number of the most popular endpoints so that inputting the openID url is easier (for example, most people don't know the Google OpenID url even if they have an account). You should definitely cover Yahoo, WordPress, Blogger, AOL and MyOpenId like this. But if people like me, who have their own personalised openID url come to your site, they should have the option to use that one.

    The OpenID specification actually requires that you provide the URL input box. The input element should also have the OpenID logo as the background image.

    0 讨论(0)
  • 2020-12-30 12:19

    Actually, it shouldn't matter since the user will supply you with the URL to ask. All OpenID providers work the same way, so the URL should be all you need (see http://openid.net/)

    0 讨论(0)
提交回复
热议问题