var platform = new PlatformJS给出了构造函数错误

时间:2016-07-18 09:35:36

标签: javascript podio

我目前正致力于构建一个集成PODIO api的Web应用程序。

下面是代码:

    var PlatformJS = require('PlatformJS');
var Podio = require('podio-js');

var podio = new PlatformJS({
    authType: 'server',
    clientId: 'test',
    clientSecret: 'somesecret'
});

返回以下错误:

  

无法读取undefined bundle.js的属性'call':23688

我使用browserify将我的main.js转换为bundle.js,我无法弄清楚为什么会发生这种情况。

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:2)

您正在尝试实例化一个新的PlatformJS对象而不是Podio对象。请参阅自述文件中的示例[1]。

[1] https://github.com/podio/podio-js#node