JosephBlock/rocksoauth

dev-master 2023-07-26 22:43 UTC

This package is auto-updated.

Last update: 2024-09-27 01:20:59 UTC


README

rocksOauth v1.0

使用Composer安装: composer require josephblock/rocksoauth

示例在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");