josephblock/voauth

V Oauth

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 1

Forks: 0

Open Issues: 1

pkg:composer/josephblock/voauth

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

This package is auto-updated.

Last update: 2025-12-27 03:58:14 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");