podio APIから始めて、どこにも速く行きません..
<?php
define("CLIENTID", "###");
define("CLIENTSECRET", "####");
define("APPID", "###");
define("APPTOKEN", "#####");
require_once 'podio/PodioAPI.php';
Podio::setup($clientid, $clientsecret);
if (!Podio::isauthenticated())
{
try {
Podio::authenticatewithapp($appid, $apptoken);
}
catch(PodioError $e) {
die(printr($e->body));
}
}
?>
出力:
Array ( [errorparameters] => Array ( ) [errordetail] => [errorpropagate] => [request] => Array ( [url] => http://api.podio.com/oauth/token [querystring] => [method] => POST ) [errordescription] => Invalid value "" (string): must be integer [error] => invalidvalue ) 1
問題は
Podio::authenticatewithapp($appid, $apptoken);
定義されているにもかかわらず、データを渡していません。私はさびついたコーディングで、API を使用するのはこれが初めてです。