josephblock / rocksoauth
Rock Oauth
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 1
pkg:composer/josephblock/rocksoauth
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2025-12-27 04:06:09 UTC
README
rocksOauth v1.0
install using Composer: composer require josephblock/rocksoauth
Example in examples/login.php
//set up rocksOauth $r=new rocksOauth(); /* * Change values to what you need * scopes are set as constants */ $r->setClient("Your client here"); $r->setSecret("Your secret here"); $r->addScope(array("Add scopes here")); $r->setRedirect("redirect URL here");