0

twilioの機能とRuntime ClientによるSyncを利用したい。

以下の関数を作成してエラーが発生しました

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
}

remove、get、fetch のすべてのメソッドを使用しても、同じエラーが発生します。

syncListItemsRuntime クライアントからキーを取得するには?

4

1 に答える 1