예제 #1
0
<?php

/**
 * @file
 * Sample token endpoint.
 *
 * Obviously not production-ready code, just simple and to the point.
 *
 * In reality, you'd probably use a nifty framework to handle most of the crud for you.
 */
include_once "../../clases/Inova360OAuth2.inc.php";
$oauth = new Inova360OAuth2();
$oauth->grantAccessToken();
?>

<?php

//validamos el scope
include_once "../../clases/Inova360OAuth2.inc.php";
$oauth = new Inova360OAuth2();
if ($_POST) {
    $oauth->finishClientAuthorization($_POST["accept"] == "Yep", $_POST);
}
$_GET['client_id'] = new MongoId($_GET['client_id']);
$auth_params = $oauth->getAuthorizeParams();