0
こんにちはイムを取得のためのPodioのAPIと問題と通信するhttps://developers.podio.com/doc/items/get-item-revision-difference-22374 doesntの仕事...知らんなぜ...Podio PHPのAPI><a href="https://github.com/podio/podio-php" rel="nofollow noreferrer">https://github.com/podio/podio-php</a>を使用してアイテムのリビジョン差
私のコードです:
$client_id = "xxx";
$client_secret = "xxx";
$app_id = "xxx";
$app_token = "xxx";
Podio::setup($client_id, $client_secret);
try {
Podio::authenticate_with_app($app_id, $app_token);
$item_id = "xxx";
$revision_from_id = 0;
$revision_to_id = 1;
$showDiff = PodioItemDiff::get_for($item_id, $revision_from_id, $revision_to_id);
echo $showDiff;
}
catch (PodioError $e) {
// Something went wrong. Examine $e->body['error_description'] for a description of the error.
}
結果ページ:
アレイ
誰かが私を助けてくださいことができますか?
マイアイテムは17のリビジョンを持っています –