Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set up an OpenID Connect client in Laravel?

What is the best way to get an OpenID Connect client flow going in the PHP Laravel framework? I have looked at socialite but that does not support OpenID Connect.

like image 593
Wilbur Robertson Avatar asked Sep 02 '16 13:09

Wilbur Robertson


People also ask

How do I create an OpenID Connect?

Open the IAM console at https://console.aws.amazon.com/iam/ . In the navigation pane, choose Identity providers, and then choose Add provider. For Configure provider, choose OpenID Connect. For Provider URL, type the URL of the IdP.

What is an OpenID client?

OpenID Connect 1.0 is a simple identity layer on top of the OAuth 2.0 protocol. It enables Clients to verify the identity of the End-User based on the authentication performed by an Authorization Server, as well as to obtain basic profile information about the End-User in an interoperable and REST-like manner.


1 Answers

I ended up doing the flow myself, the lib I used in the end was https://github.com/jumbojett/OpenID-Connect-PHP - was a nice and simple to get up and running

like image 147
Wilbur Robertson Avatar answered Sep 29 '22 09:09

Wilbur Robertson