Questions tagged [lightopenid]

LightOpenID is a lightweight OpenID library written in PHP. It already implements a functional consumer and a provider is under development.

LightOpenID is an open source software project written in PHP 5 for implementing the consumer part of OpenID.

It offers a some documentation about:

Features:

  • Easy to use (you can code a functional client in less than ten lines of code)
  • Uses cURL if avaiable, PHP streams otherwise
  • Supports both OpenID 1.1 and 2.0
  • Supports Yadis discovery
  • Supports only stateless/dumb protocol

Requirements:

  • PHP 5 or later
  • 29.5 KB for the library
103 questions
1
vote
2 answers

Users management strategies with LightOpenID

I've discovered recently LightOpenID wich i'm going to use as a login system for all my next websites. As i'm fetching some infos when users register/login with LighOpenID, I'd like to know if it's technically ok to use user's email as unique id in…
Fxfx
  • 11
  • 1
1
vote
1 answer

Open ID Implementation PowerSchool PHP

I have looked into the PowerSchool's documentation on OpenID implementation. However, I believe it misses out on vital information i.e., how do we pass the required attributes. I have looked into sample implementations in other platforms. But, they…
ZerosAndOnes
  • 1,083
  • 1
  • 13
  • 25
1
vote
2 answers

LightOpenID forbidden when redirecting back

I'm trying to use lightOpenID, which should be simple and a case of uploading the files then testing it works. When I use the example-google.php I get click the login button, the first time it asked me to login to Google and allow/remember the site…
Gregory
  • 207
  • 2
  • 12
1
vote
1 answer

Lightopenid + Google Apps + validate() = No servers found!

I'm using LightOpenID and have a test page that is a near-copy of the example-google.php that came with it (I threw some echo's in to debug). Clicking the 'Login with Google' button takes me to Google. I sign in with a valid Google Apps email…
Eric B.
  • 11
  • 2
1
vote
1 answer

OpenID duplicate results in database

I am trying to make a webiste with Yahoo OpenID. Everything works fine until I log out and then log in again. In my sql database I get duplicated results. Only the hash is changed. It seems that $sql = $db->query("SELECT * FROM users WHERE steamid =…
Grizzlly
  • 486
  • 3
  • 14
1
vote
0 answers

Partialy visible PHP code in page, using OpenID

I'm trying to get some info from steampowered.com, I have to use OpenID and there is my issue. I was following this post Steam API Authentication Even when I try to use examples I still get the same error. Sending pictures Loaded page: enter image…
Vergil333
  • 505
  • 1
  • 7
  • 14
1
vote
1 answer

LightOpenID Failed to connect to 2a00:1450:4016:804::2004: Network is unreachable

I'm playing around with LightOpenID library on a free web host (awspace) and so far all my attempts to log in via google account using open id result in the following error : example-google.php: Failed to connect to 2a00:1450:4016:804::2004:…
dxv
  • 31
  • 2
1
vote
0 answers

Single Sign On between Yii and Moodle two php application

I have implement SOS concept between two php application. it application it available different domain like one is www.example.com and another is www.test.com. My required following condition. 1.When user is login any appplication to login this user…
Hiren Patel
  • 59
  • 1
  • 3
  • 9
1
vote
1 answer

Google login works on localhost but not on online domain

I am using lighopenID https://gitorious.org/lightopenid which works fine at my local host. And always validates: include 'openid.php'; $openid = new LightOpenID('localhost'); $checkvalidation = $openid->validate(); But when I made the code online…
user3027531
  • 282
  • 1
  • 5
  • 20
1
vote
1 answer

Should I be using LightOpenID?

OpenID appears to be deprecated according to Google's information here: https://developers.google.com/+/api/auth-migration#timetable What does this mean for developers currently using LightOpenID? Does LightOpenID use deprecated authentication…
Citizen
  • 12,430
  • 26
  • 76
  • 117
1
vote
1 answer

Yahoo open id login api

Im new to open id, but still i have tried to integrate the open id in my website. Im using yahoo provider to login in to my website. Could any help me in getting the user information like yahoo mail id , first name , last name. I have take the below…
Prassu
  • 101
  • 2
  • 10
1
vote
0 answers

OpenID Connect consumer in PHP

I'm starting a project where people will log into somebody else's OpenID provider and my CRM vendor's membership system (people will log into the third party so they can change their preferences etc). I'll therefore be a 'consumer'. I mostly build…
Will
  • 812
  • 1
  • 6
  • 13
1
vote
0 answers

Sign In through Steam not working (OpenID)

Alright, I am having a bit of a problem with signing in through steam on my website. The code seems to work up until you press the "Yes, sign in." here: Screenshot. When I click the "Yes, sign in." button it redirects me back to the page that the…
Drummss
  • 45
  • 7
1
vote
0 answers

Google OpenID: Error: invalid_request

I am implementing OpenID using PHP in my website. The code i written as follows...
Chaitanya
  • 73
  • 1
  • 9
1
vote
1 answer

Do the Google and Yahoo implementations of OpenID respect the "required" attribute?

I would like to use OpenID (PHP and LightOpenID) to get the following user information: $openid->required = array( 'namePerson', 'namePerson/first', 'namePerson/last', 'contact/email', 'person/guid', …
manhon
  • 683
  • 7
  • 27