josephblock/voauth

V Oauth

Maintainers

Package info

github.com/JosephBlock/vOauth

pkg:composer/josephblock/voauth

Statistics

Installs: 22

Dependents: 0

Suggesters: 0

Stars: 2

Open Issues: 1

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

This package is auto-updated.

Last update: 2026-03-27 04:26:40 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");