我正在嘗試在NodeJS上使用Dropbox Datastore API。我可以連接並使用它,但我似乎無法停止並讓程序正常退出。我從https://www.dropbox.com/static/api/1/dropbox-datastores-0.1.0-b3.js中提取文件並將其放入我的本地目錄中。在NodeJS中關閉Dropbox Datastore API
所以,如果你運行以下(有效的信譽),那麼它永遠不會退出。
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});
});
也許你應該改變你的標題,如何優雅地退出node.js,因爲它在我看來與DropBox無關。 –