NodeJS で Dropbox Datastore API を使用しようとしています。接続して問題なく使用できますが、停止してプログラムを正常に終了させることができないようです。https://www.dropbox.com/static/api/1/dropbox-datastores-0.1.0-b3.jsからファイルを取得し、ローカル ディレクトリに配置しました。
したがって、(有効な資格情報を使用して) 次を実行すると、終了しません。
var dropbox = new require('./dropbox.js')
var client = new dropbox.Client
({
key:'apikey',
secret:'apisecret',
token:'useroauthtoken',
uid:'useruid'
});
var datastoreManager = client.getDatastoreManager();
datastoreManager.openDefaultDatastore(function(error,datastore){
if(error) console.log(error);
var table = datastore.getTable('exampletable');
table.insert({hello:'newman',inthepool:true});
});