从 podio 获取所有项目 api
get all items from podio api
我想从 node js 中的 podio 获取应用程序项
这是用于获取项目的代码,
podio.authenticateWithCredentials(username, password, function () {
podio.request('GET', '/item/app/{app_id}/filters').then(function (responseData) {
console.log(responseData);
res.send(responseData);
}).catch(function (e) {
console.log('0-0-0-0', e);
res.send(e);
});
});
我总是遇到这个错误
"No matching operation could be found. The path '/item/app/{app_id}/filters' was not found.."
有什么解决办法吗?
您需要将此 url '/item/app/{app_id}/filters'
中的 app_id 替换为您必须从 podio api.
获得的实际 url
仅将 {app_id}
替换为应用程序 ID 要获取应用程序 ID 和令牌:
在跑道上转到您的应用程序
单击边栏中的小扳手
Select 靠近底部的 "Developer" 选项
在下一页你可以得到app id和token
您应该使用 POST 而不是 GET 方法
我想从 node js 中的 podio 获取应用程序项 这是用于获取项目的代码,
podio.authenticateWithCredentials(username, password, function () {
podio.request('GET', '/item/app/{app_id}/filters').then(function (responseData) {
console.log(responseData);
res.send(responseData);
}).catch(function (e) {
console.log('0-0-0-0', e);
res.send(e);
});
});
我总是遇到这个错误
"No matching operation could be found. The path '/item/app/{app_id}/filters' was not found.."
有什么解决办法吗?
您需要将此 url '/item/app/{app_id}/filters'
中的 app_id 替换为您必须从 podio api.
仅将 {app_id}
替换为应用程序 ID 要获取应用程序 ID 和令牌:
在跑道上转到您的应用程序 单击边栏中的小扳手 Select 靠近底部的 "Developer" 选项 在下一页你可以得到app id和token
您应该使用 POST 而不是 GET 方法