我想通过运行时客户端使用 twilio 功能和同步。
我在下面做了函数并得到了错误
exports.handler = function(context, event, callback) {
let sync = Runtime.getSync();
sync.lists('list_keys').syncListItems.get(0).then(function(response){
console.log(response);
callback(null);
});
错误
{
message: 'sync.lists(...).syncListItems.get(...).then is not a function',
name: 'TypeError',
stack: 'TypeError: sync.lists(...).syncListItems.get(...).then is not a function
}
当我使用所有方法删除、获取、获取时,我仍然得到相同的错误。
如何从syncListItems
运行时客户端获取密钥?