pool/web/yaamp/core/exchange/jubi.php
Tanguy Pruvot bb31cec957 dos2unix all files, we are on linux
trim them, btw... its important to start on a clean base...
2015-07-12 04:40:50 +02:00

20 lines
287 B
PHP

<?php
function jubi_api_query($method, $params)
{
$uri = "http://www.jubi.com/api/v1/$method$params";
// debuglog("$uri");
$ch = curl_init($uri);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$execResult = curl_exec($ch);
$obj = json_decode($execResult);
return $obj;
}