从 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。