josephblock/voauth

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

This package is auto-updated.

Last update: 2025-05-27 02:48:58 UTC


README

vOauth v1

install using Composer: composer require josephblock/voauth

Example in 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");