从podio api获取所有项目

问题描述 投票:0回答:1

我想从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.."

有什么解决方法吗?

javascript node.js podio
1个回答
0
投票

您需要使用必须从podio api获取的实际URL替换此URL '/item/app/{app_id}/filters'中的app_id。

© www.soinside.com 2019 - 2024. All rights reserved.