You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
318 B

<?php
require('include.php');
session_start();
if(isset($_GET['logout'])){
$c->logout($_SESSION['user']);
var_dump($_SESSION);
echo "logout success".time();
}else{
$oauth_data = $c->require_oauth($_SESSION['user']);
var_dump($oauth_data);
$a = $c->get('/userasdfa/asda');
var_dump($a);
}