Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there OAuth 2 server side PHP or Java implementations? [closed]

If there is more then one implementation, which one is better/mostly maintained?

Specifically for OAuth 2.0 Draft 12.

like image 293
fudge Avatar asked Feb 02 '11 14:02

fudge


People also ask

What is oauth2 in PHP?

league/oauth2-server is a standards compliant implementation of an OAuth 2.0 authorization server written in PHP which makes working with OAuth 2.0 trivial. You can easily configure an OAuth 2.0 server to protect your API with access tokens, or allow clients to request new access tokens and refresh them.

What is oauth2 in Java?

Summary: OAuth 2.0 is a standard specification for allowing end users to securely authorize a client application to access protected server-side resources.

What is oauth2 authorization server?

The OAuth 2.0 authorization framework is a protocol that allows a user to grant a third-party web site or application access to the user's protected resources, without necessarily revealing their long-term credentials or even their identity.


2 Answers

There is a more up-to-date version of the PHP OAuth2 library available at https://github.com/quizlet/oauth2-php It implements draft 20 of the spec, and will likely work with few or no changes once the final spec is released.

like image 102
aaronpk Avatar answered Sep 28 '22 02:09

aaronpk


Taken from OAuth Wiki, there seems to be one PHP implementation called oauth2-php which supports IETF draft v9. Since OAuth2 is still a draft, it will probably be hard to find more implementations.

like image 21
David Kuridža Avatar answered Sep 28 '22 00:09

David Kuridža