0

我正在尝试从 Podio 获取所有记录并在 KLIPFOLIO 中创建为数据源。

我正在使用这个 API URL -https://api.podio.com/item/app/{App_ID}

如果我只是以这种方式定义(https://api.podio.com/item/app/{App_ID})没有偏移或限制的参数,我会得到一个结果。

但是,如果我这样做,我会https://api.podio.com/item/app/{App_ID}?limit=500&offset=500收到一个错误"Unable to retrieve data. Try a different URL or check to make sure the resource is available."

这记录在https://support.klipfolio.com/hc/en-us/articles/215546958-Creating-a-Podio-Data-Source但它不起作用。

请帮助如何使用 get 方法的 URL 参数定义偏移量和限制。

4

1 回答 1

0

您是否尝试过 cURL 以确保所有参数都运行良好?

curl -H "Content-Type: application/json" -H "Authorization: OAuth2 <auth_token>" -X GET "https://api.podio.com/item/app/<app_id>?offset=10&limit=10"
于 2017-10-05T19:04:45.857 回答