JosephBlock / voauth
V Oauth
dev-master
2023-07-26 22:07 UTC
Requires
- php: >=5.3.0
This package is auto-updated.
Last update: 2024-09-27 01:08:45 UTC
README
vOauth v1
使用Composer安装: composer require josephblock/voauth
测试示例在test/v.php
//set up vOauth $v=new vOauth(); /* * Change values to what you need * scopes are set as constants */ $v->setClient("Your client here"); $v->setSecret("Your secret here"); $v->addScope(array("Add scopes here")); $v->setRedirect("redirect URL here");