openid

openid in pylons (not using authkit)

Hey all, So I'm trying to authenticate users on a Pylons web application using openid. I don't want to use authkit, seeing as it is no longer maintained. I'm currently trying to use python-openid (available from git at http://github.com/openid/python-openid) and having a hard time with it. The pylons framework isn't making it easy for ...

RPX token URL problem

Hi there, I am using RPX in my CakePHP project. I have set the toke url like this: http://www.mysite.com/users/login Here is my login action code. function login() { $this->Ssl->force(); $this->layout = 'colorbox'; $this->pageTitle = "User Login"; } I have used SSL with the login form. Look above code( $this->Ssl...

Setting up OpenID Provider with SubDomains Identifiers using DotNetOpenAuth

Hi! I am currently trying to implement an OpenID Provider on my own domain name. Thus, I would like the OpenID Identifier of a user to be user.example.com instead of the default example.com/user.aspx/user.. Is it possible for DotNetOpenAuthto do that? If so, roughly what changes do i need to make? ...

DotNetOpenAuth and Google OpenID implementation

It's a relatively well-known fact that Googles' OpenID Provider does not provide (no pun) username and various other properties, as well as that it generates really ugly claimed identifiers. However, in a recent Hanselminutes episode (at arount 21 minutes into the show) Andrew Arnott says that "Google has special requirements before th...

Android app: logging in using google ID?

Well hello guys. I am in progress of creating an android app that requires you to register and login. Now I was thinking, why register and login? Isn't it possible to automaticly login with the google account that is already on your device? Just like how you can use your google account to login to stack overflow? So my question is: is...

Implementing Google Accounts' OpenID like Stackoverflow

Hi, Firstly, This question may be asked. But I could not get the information i am looking for. I am creating a website which should take to google.com where the user enters his account information and it redirect back to my website similar to how stack over flow is doing when we click on gmail image. I am trying to implement a website ...

Using janrain's OpenId php libs' test scripts. (PHPUnit)

I'm trying to run the test scripts that come with JanRain's php openid libraries. I've installed PHPUnit using pear. When I try to run the scripts I get: Fatal error: Class 'PHPUnit_Framework_TestCase' not found in /var/www/localhost/htdocs/openid/openid/Tests/Auth/OpenID/StoreTest.php on line 72 I'm sure this is a really simple ...

Where can I find OpenID Buttons?

Yahoo offers OpenID buttons on this webpage: http://developer.yahoo.com/openid/loginbuttons.html I was wondering if Google / Aol and other providers have similar graphics that I can use on my webpage. If so, where can I find them? Otherwise, am I alllowed to just photoshop the logos of these companies into my own graphic? ...

Location Header for Yahoo! OpenID in Rails App

Hello All, I'm trying to get the "not confirmed" warning to go away when using Yahoo! as an OpenID provider for my Rails 2.3.5 application. The Yahoo! OpenID FAQ[1] recommends "that your site links to its XRDS document using the X-XRDS-Location HTTP header". Does this mean every single response from my Rails app should include this head...

Retrieving email: OpenId vs. classical authentication

I need to implement authentication for the project I am working on. But I can't make the choice: to use OpenId or not. The main question for me is how to retrieve user's email (it is critical for sending notifications) if user has logged in by OpenId. Of course, most OpenId providers return this information but I can't trust them (as any...

How can I authenticate my POST request via OpenId on the commandline

I want to add entries to my RESTful Rails blog using HTTP POST requests. I have a script that does this easily enough, but it only works for my development app because I don't require it to authenticate. Now that I'm publishing my site, I obviously need to authenticate my uploads before posting them. The rest of the admin stuff is behin...

phpmyid authentication not work

Hi! I can't log neither to stackoverflow with phpmyid running on my server, nor to my own janrain rpx server. The error: Unable to log in with your OpenID provider:Error occurred while sending a direct message or getting the response. I see this in my phpmyid log: Run mode: associate at: 1285002110 Request params Array ( ...

what to do with openid results?

I am trying to use OpenID (JOpenID) for the first time. Once the OpenID auth is over and the return URL is called, i get the identity and email of the user. In case when the user opens my site in future, how do i identify him again? Should i use cookie or something? Or does the OpenID take care of it? All OpenID libraries talk only about...

OpenId + OAuth hybrid protocol Implementation for google using java

Hi, I am trying to implement the OpenID + OAuth protocol using java in my web application. I am allowing user to login using the Google openID and i want to embed the Google calendar with that email id which has been logged in. I was created the following code, know i was successfully authenticated and i am getting the values of openI...

mewp openid provider configuration

Hi! I set up Mewp-s provider, but as i would to authenticate myself in stackoverflow i get this: Unable to log in with your OpenID provider: Error occurred while sending a direct message or getting the response What could be the problem? ...

What should I use to create a login system for multiple sites similar to SO?

I am in the process of creating a series of websites and web applications that will be hosted on a dedicated server that I own and host. They will be developed on Windows Server 2008, IIS7 and .NET 4, SQL Server 2008 and Entity Framework. This will be a live server as well as a place for me to learn how to do some new stuff. A user wil...

django-authopenid provider icons / buttons missing

I followed the setup instructions for django authopenid application. As far as I can tell it is working properly. However, I cannot see the provider buttons/icons for yahoo, google, etc on the sign in with openID portion. Anyone had this problem? Thanks. ...

Django + Google SSO openid

Hi, I would like to have my application http://app.acquee.com/designer to accept a google account as a login. I found a bunch of libs for django but most work on top of existing Django authentication system that I do not use. I have my own set of user tables where I keep user info and privileges. Any suggestion on how to integrate that ...

authlogic openid: fullname is not a defined simple registration field

I finally got an open id demo app going: rails 2.3.5 authlogic openid When I create a new user in the database, I get the following error: fullname is not a defined simple registration field This is after I authorize the localhost,etc. I don't have fullname anywhere. Any ideas? ...

Is there a better way to fetch OpenID infos from provider?

Hi, I am very new to the OpenID logic, so please excuse me if I am asking something trivial. I am using the OpenID component for CakePHP by Cakebaker, with the PHP OpenID library by JanRain. It's all working quite well, but I could not find an exhaustive way to retrieve user informations depending on provider and method (sreg vs. ax). ...