openid

How do I implement Direct Identity based OpenID authentication with Zend OpenID

亡梦爱人 提交于 2019-11-28 03:52:06
I'm using the Zend framework and the openid selector from http://code.google.com/p/openid-selector/ - however I find I can't login using sites like Google and Yahoo as they use direct identity based login system whereby one is just redirected to a url as opposed to entering a unique url of their own for authentication. I've checked out many options and hacks but none of them seem to work. How can i get this to work here btw - how is it implemented at stack overflow? I could really use all the help here guys.. Edit Well the issue here is that from what I have noticed is that the Zend OpenID

Is Windows Live ID an OpenID Provider? [closed]

天涯浪子 提交于 2019-11-28 03:50:59
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago . I've heard different things. Seems like Microsoft experimented with a beta service, but I don't know if it's still available, or ever made it into production. If Windows Live ID is an OpenID Provider, where is the endpoint? 回答1: No. Windows Live ID is not an OpenID Provider. They use a proprietary protocol. Ever

What reasons are there NOT to use OpenID?

青春壹個敷衍的年華 提交于 2019-11-28 03:11:27
You see a fair bit (in the Geek community anyway) about OpenID. It seems like a good idea. I'm developing a website that will be targeted at a somewhat less geeky audience (but not quite Mom and Pops either) so I have to wonder if OpenID is going to be "too hard" for some audiences. What do you think? That aside, are there any other technical or non-technical reasons NOT to use OpenID? Average users still don't understand what OpenId is, what it's for, or how to use it. My parents would not be able to login to Stack Overflow, for instance. That being said, this is largely about user interface.

How to add Social login services from Google, Facebook, Yahoo etc. to my website?

余生颓废 提交于 2019-11-28 02:52:54
I want to add the following buttons to my website for providing users with option to login using more services like Google, Facebook etc. Please answer the following questions: How can I add various services like this free of cost ? (Please note that I do not want to use any paid service like Janrain and ) How can I store user information of the user (like email, phone no.) that are stored in the accounts to my database? Please provide any links/libraries that can be used. I appreciate any other information that you can provide. Thank you! Atul Goyal You'll be using the APIs of the respective

Best way to implement Single-Sign-On with all major providers?

我与影子孤独终老i 提交于 2019-11-28 02:52:51
I already did a lot of research on this topic and have implemented a lot of solutions myself. Including OpenID, Facebook Connect (using the old Rest API and the new Graph OAuth 2.0 API), Sign in with twitter (which has been upgraded to fully qualified OpenID by now as far as I know), and so on... But what I'm still missing is the perfect all in one solution. During my research I stumbled about some interesting projects: Janrain (formerly RPX) - a commercial solution Gigya - a free but externally hosted solution with javascript and rest apis AnyOpenID - a free solution for clients, commercial

Best OpenId API for ASP.NET MVC application

和自甴很熟 提交于 2019-11-28 02:49:13
I am developing an ASP.NET MVC application and I want to use OpenId. What is the best option? DotNetOpenId RPX Other??? Does anyone know what StackOverflow uses? Is the Login UI custom-developed, or provided by an API/service? Jarrod Dixon We use the excellent DotNetOpenId library here on Stack Overflow: http://code.google.com/p/dotnetopenid/ now moved to: http://www.dotnetopenauth.net/ Our original login UI was provided by ID Selector , but we've since rolled our own minimalist version. I'll second the recommendation for DotNetOpenId and add a recommendation for openid-selector (open source

Login to site using Gmail [closed]

懵懂的女人 提交于 2019-11-28 01:59:55
问题 I am implemint a login in my site.I want to implement the login somewhat how it is done in stackoverflow.But with only one option of gmail. 1)The user must have chose login type as gmail 2)He must enter his gmail username and password 3)He must be redirecred back to site i am very new in this ..Any help plz 回答1: This is very easy to accomplish with LightOpenID. They have an example available with that use case in mind. <?php # Logging in with Google accounts requires setting special identity,

Azure Active Directory Graph API - access token for signed in user

ぃ、小莉子 提交于 2019-11-28 01:45:20
问题 Azure Active Directory Graph Api allows you to perform operations on the signed in user. https://msdn.microsoft.com/en-us/library/azure/ad/graph/api/signed-in-user-operations I don't know how to obtain an access token for Graph API on behalf of the signed in user. I can obtain an access token for my web application, but this is not on behalf of a particular user: var authContext = new AuthenticationContext(authorityString); var result = await authContext.AcquireTokenAsync ( "https://graph

How to fetch account data from a provider with LightOpenID?

眉间皱痕 提交于 2019-11-27 23:58:53
I'm having problems with a small OpenID-library called LightOpenID . I can authenticate to almost all providers, but I don't know how to fetch the data from the provider. I only get Array(), even with print_r(). You need to call getAttributes() after $openid->validate() not before. Remember: Note that it does not guarantee that any of the required/optional parameters will be present This is how I use it. This is the file openid.php in the folder lightopenid. In the class make the following additional functions - class LightOpenID { public $returnUrl , $required = array() , $optional = array()

Library to integrate Google's OAuth/OpenID hybrid in Java Web App?

与世无争的帅哥 提交于 2019-11-27 21:37:06
I'm building a Java web app that needs access to a user's Google Calendar data - therefore I thought the OAuth/OpenID hybrid is the best way to go. What's the best library to handle the job - and reduce the amount of code on my end? I tried openid4java & Spring Security OpenID (both don't support hybrid) as well as dyuproject (couldn't get it integrated). PS: GAE is not an option Any ideas? I don't know any integrated library but I do it with an OpenID library ( openid4java ), an OAuth library ( net.oauth Java implementation [Edit: or Scribe ]) and my bare hands as follows: My OAuth consumer