I need a php lib that can auth using OpenID against sites offering this service, like Google, Yahoo, Wordpress, etc...
Anyone used any lib that actuallly works? I've tryied a few but couldn't get any to auth against Google, Yahoo, or Wordpress.
...
Hi there,
I was trying to replicate what Rick is doing here for OpenID implementation:
http://www.west-wind.com/weblog/posts/899303.aspx
However, when I get to this part:
return req.RedirectingResponse.AsActionResult();
Then I cannot continue, as AsActionResult is no longer exists, is there any replacement of this?
Thanks alot
...
I am developing an OpenID consumer in PHP and am using the fantastic LightOpenID library (http://gitorious.org/lightopenid). Basing my code off of that found in the example client script I have successfully created a consumer. However, I've run across a snag: Google requires the openid.identity and openid.claimed_id to be set to "http://...
Hi there,
Is there any site that show both OpenID and normal login on the same view? Most of the sites either have OpenID implementation or Normal Login implementation on different views.
I tried to do that, but it seems my code is very dirty, passing a blank username and password if using OpenID, otherwise OpenID will be blank but pas...
Hi,
I am looking for a step by step guide to implement Google OpenID+OAuth in our Webapplication running on Heroku for getting calendar/contacts data. I have looked at many documents and Q&A about this but still can't make things work and was wondering if anyone here knew of a place which describes the plugins, gems needed and a step by...
I am using JanRain OpenID Library PHP.
I am trying out the consumer example in /example/consumer.
Services like Google (or Yahoo) are not working, while other's like myopenid.com, blogger are working.
My PHPinfo says that cURL and OpenSSL is enabled.
Note that I also tried using LightOpenID Library (gitorious.org/lightopenid) which work...
Does anybody know what happened to Microsofts promise to support Openid? I browsed the web and I am not able to find anything but: Service will be available 2009. But it is 2010 now.
Thanks for useful links.
...
I am trying to extend the LightOpenID PHP library to "discover" that an identity provider requires Directed Identity. This should be easy as the library is beautifully well written and wonderfully clean but I don't know how to identify these types of providers.
A couple things I've tried:
I looked through the OpenID specs on the subjec...
Our web app offers a service that allows a "Publisher" to create a website (we give them a CMS system) that is ready to provide this service to "Members" (think Shopify).
We have some possible clients that wish to become "Publishers" but they already have existing websites (vbulletin, word press blog, etc) with their own user base.
We ...
This might be a shot in the dark, but I am trying to implement an OpenID Provider in Perl using the Net::OpenID::Server module. The documentation for the entire process is confusing and sparse.
If anyone has successfully implemented a provider in Perl, could you please paste some code snippets?
...
I am trying to get authlogic and openid happening in my app. So far its been seriously unpleasant. I have tried to follow the Railscasts on the topic but none of the gems or plugins seem to work.
A after reading about a previous error I ended up installing this open-id plugin (mentioned at the bottom of that page). Now I am getting the ...
I've been experimenting with OpenID, and have set up a sample web page to access using my OpenID account. I'm using the Php OpenID Library by Janrain and it wasn't working with my Google Account. A little research led me to this question, which suggests the problem is that Google uses https and...
... it's likely the setup for making...
Hi there,
For some reason, the following code does not return anything:
string alias = response.FriendlyIdentifierForDisplay;
var sreg = response.GetExtension<ClaimsResponse>();
if (sreg != null && sreg.MailAddress != null) {
alias = sreg.MailAddres...
I am trying to host my site that uses DotNetOpenAuth (OpenID) behind ISA 2006 (reverse proxy), and after it authenticated with a provider (such as Google), and it returns with a URL with %253A in the URL. However, ISA HTTP filter rejects the request.
What I need to do is, on ISA web publishing rule, right click > config HTTP policy pro...
When the user clicks the OpenIdButton to log on to myOpenID, they navigate to the myOpenID sign in page and are prompted for a Username and password.
The returned ClaimedIdentifier starts with https (note the 's')
When the user enters their username in the OpenIdLogin control the returned ClaimedIdentifier starts with http (no 's').
W...
When authenticating to any site (including stackoverflow) with an AOL OpenID, it appears that you can specify any fake username in the form, then enter a valid AOL username/password on the AOL OpenID site, and the target web site (e.g. stackoverflow) will be told that authentication succeeded, but with the FAKE username.
My question is,...
I am using Google Apps Standard for all of my email and calendaring. I am trying to implement a Single Sign On solution with a Django app that I am building, but I am running into an issue with using my Apps account to login.
I have all of the authentication code in place to authenticate with OpenID's in Django. When I hit the /admin pa...
Does someone know of a library that is fairly "drop in" and allows you to easily put together multiple authentication options in an Android app to services like Facebook, OpenID, Twitter, etc. much like RPX does?
...
Hi
Usually people ask for 'best library', but I assume OpenID authentication is only a couple of requests in/out...? And I'm on GAE where more JARs means slower cold-start. For example openid4java-0.9.5.jar has 190kB. That seems like an insanely high cost for some URL reading and text parsing.
Am I missing something? Is it more complic...
I'm working on a web based project where we make use of the user's Google feeds and we store some information about them in our database. We don't want to make users create accounts with us, but instead they sign in using their Google credentials. It's clear to me that we'll need OAuth, but I'm wondering about the OpenID part. Is ther...