Beispiel #1
0
<?php

require_once "../yakwala_api.class.php";
$name = array_key_exists("name", $_GET) ? $_GET['name'] : "Yakwala";
// Set your client key and secret
$client_key = "50a0e2c4fa9a95240b000001";
$client_secret = "5645a25f963bd0ac846b17eb517cd638754f1a7b";
$redirect_uri = $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
// Load the Yakwala API library
$yakwala = new YakwalaAPI($client_key, $client_secret);
if (array_key_exists("code", $_GET)) {
    // IDENTIFY USER
    $response = $yakwala->GetToken($_GET['code'], $redirect_uri);
    echo 'TOKEN' . $response->access_token;
    $yakwala->SetAccessToken($response->access_token);
    showUserBasics($response->user);
    $userid = $response->user->id;
    // POST a place
    $params = array("place" => json_encode(array("title" => 'place title3', "content" => 'place content', "yakcat" => array('50923b9afa9a95d409000', '50923b9afa9a95d409000001'), "freetag" => array('tag11', 'tag22'), "outgoinglink" => 'http://www.theplacewebsite.com', "location" => array('lat' => 48.2, 'lng' => 2.3), "formatted_address" => " 3 rue du Ruisseau, Paris , France", "address" => array("street_number" => "3", "street" => "rue du Ruisseau", "arr" => "", "city" => "Paris", "state" => "Paris", "area" => "Ile de France", "country" => "France", "zip" => "75018"), "contact" => array("tel" => "0123456789", "mobile" => "0612345678", "mail" => "*****@*****.**", "transportation" => "metro 3 station Ruisseau", "web" => "http://www.theplace.com", "opening" => "Tlj de 8h à 20h", "closing" => "dimanches et jours fériés", "specialopening" => "Nocture le jeudi de 19h à minuit"))), "picture" => "@C:\\miro.jpg;type=image/jpeg");
    $response = $yakwala->GetPrivate("api/place/" . $userid, $params, 'POST');
    echo '<br>RESULT:<br>';
    var_dump($response);
    $theplace = JSON_decode($response)->place;
    // POST an info ( in the user's feed )
    $params = array("info" => json_encode(array("title" => 'info TOTO', "content" => 'info content', "yakcat" => array('50923b9afa9a95d409000', '50923b9afa9a95d409000001'), "yaktype" => 3, "print" => '1', "freetag" => array('tag11', 'tag22'), "placeid" => array('_id' => $theplace->_id))), "picture" => "@C:\\miro.jpg;type=image/jpeg");
    $response = $yakwala->GetPrivate("api/user/feed/" . $userid, $params, 'POST');
    $insert = $response;
    echo '<br>RESULT:<br>';
    var_dump($insert);
    // POST an info ( in the user's feed )
    $params = array("info" => json_encode(array("title" => 'info DODOD', "content" => 'info content', "yakcat" => array('50923b9afa9a95d409000', '50923b9afa9a95d409000001'), "yaktype" => 3, "print" => '1', "freetag" => array('tag11', 'tag22'), "location" => array('lat' => 48.3, 'lng' => 2.4), "address" => " 3 rue du Ruisseau, Paris , France")), "picture" => "@C:\\miro.jpg;type=image/jpeg");
<?php

require_once "../yakwala_api.class.php";
$name = array_key_exists("name", $_GET) ? $_GET['name'] : "Yakwala";
// Set your client key and secret
$client_key = "50a0e2c4fa9a95240b000001";
$client_secret = "5645a25f963bd0ac846b17eb517cd638754f1a7b";
$redirect_uri = $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
// Load the Yakwala API library
$yakwala = new YakwalaAPI($client_key, $client_secret);
if (array_key_exists("access_token", $_GET) && array_key_exists("id", $_GET)) {
    $yakwala->SetAccessToken($_GET['access_token']);
    $response = $yakwala->GetPrivate("api/user/" . $_GET['id']);
    $userdetails = json_decode($response);
    echo "<br><br> <b>USER DETAILS:</b> user/userid<br>";
    print_r($userdetails);
    $response = $yakwala->GetPrivate("api/user/feed/" . $userdetails->data->_id);
    $userfeed = json_decode($response);
    echo "<br><br> <b>LAST 20 INFOS POSTED:</b> user/feed/userid<br>";
    print_r($userfeed);
    $response = $yakwala->GetPrivate("api/user/search/renaud");
    $userlist = json_decode($response);
    echo "<br><br> <b>USERS SEARCH RESULTS:</b> user/search/renaud<br>";
    print_r($userlist);
} else {
    $authlink = $yakwala->AuthenticationLink($redirect_uri, 'token');
    //echo $authlink;
    header('Location:' . $authlink);
}
function showUserBasics($userBasic)
{