Hawk
OAuth 2.0 Client
Hawk | OAuth 2.0 Client | |
---|---|---|
- | 9 | |
67 | 3,642 | |
- | 0.3% | |
0.0 | 0.0 | |
6 months ago | about 2 months ago | |
PHP | PHP | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
Hawk
We haven't tracked posts mentioning Hawk yet.
Tracking mentions began in Dec 2020.
OAuth 2.0 Client
-
Best social login library for PHP ("sign in with Apple/Google/Facebook" etc.)?
League/oauth2-client has a lot of implementations
Have a look on this one https://oauth2-client.thephpleague.com/
-
Looking for PHP classes that will authenticate against existing OAuth or SAML IdP servers
In regards to oauth the phpleague packages are fairly popular. Again, the flow requires some redirect dancing so not something that can be (simply) just a single boolean-returning method on the PHP side. Additionally, oauth is a relatively weak standard (Especially where you want to verify identity) in which case platform specific actions/tweaks are needed hence why most use platform-specific oauth libraries. OIDC builds upon oauth to standardize the flow, including getting the identity, but it isn't supported by all platforms offering oauth.
- Mobile application using website's PHP OAuth
-
The PHPer's Guide to OAuth
For the client side, I'll be using the library league/oauth2-client.
-
Looking for low security and simple login ideas.
"Login with Google/Facebook/Twitter/etc": That's called OAuth2 and quite easy to implement. This package is good OAuth2 client to start.
-
I'm stuck with PHP Oauth 2.0 Implementation!
I'd recommend using a library - for Azure AD OAuth we've been using https://github.com/thephpleague/oauth2-client + https://github.com/thenetworg/oauth2-azure (see also https://oauth2-client.thephpleague.com/providers/thirdparty/ )
-
Weekly "ask anything" thread
For Azure AD, I'd recommend the combination of https://github.com/thephpleague/oauth2-client for the authentication part (getting the token) and the Microsoft Graph SDK for then using the token to get information about the user https://github.com/microsoftgraph/msgraph-sdk-php
-
Testing PHP API for a small key-value database
Here's a good example of that: https://github.com/thephpleague/oauth2-client/blob/master/.gitattributes
What are some alternatives?
Json Web Token - A simple library to work with JSON Web Token and JSON Web Signature
HybridAuth - Open source social sign on PHP Library. HybridAuth goal is to act as an abstract api between your application and various social apis and identities providers such as Facebook, Twitter and Google.
Sentinel - A framework agnostic authentication & authorization system.
Sign in with Apple for PHP - PHP library to verify and validate Apple IdentityToken and authenticate a user with Apple ID.
OAuth2 Server - documentation for the oauth2-server-php library
OAuth 1.0 Client - OAuth 1 Client
PHP oAuthLib - PHP 5.3+ oAuth 1/2 Client Library
PHP OAuth 2.0 Server - A spec compliant, secure by default PHP OAuth 2.0 Server
TwoFactorAuth - PHP library for Two Factor Authentication (TFA / 2FA)
Opauth - Multi-provider authentication framework for PHP