Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
9 righe
459 B
9 righe
459 B
<? |
|
$configPath = substr(__DIR__,0,strpos(__DIR__,"/public_html"))."/config.php"; |
|
include_once($configPath); |
|
if (isset($_SESSION["utente"]) && $_SESSION["utente"]->gerarchia === 1 && !empty($_GET["code"])) { |
|
// PER OTTENERE IL CODICE COLLEGARSI A https://api.getgo.com/oauth/v2/authorize?client_id={consumerKey}&response_type=code E COPIARE IL CODE NELLA URL DI RISPOSTA |
|
$goto = new goToMtg; |
|
$goto->createFirstToken($_GET["code"],0,0); |
|
} |
|
?>
|