Google ドライブ API は、Google ドライブ サーバー インフラストラクチャでコードを実行する方法を提供しますか?
顧客が自分のファイルを検索できるように、 Google Dirve ベースを書きたいとしましょうgrep
。私はこのようなものを書くことができるようになりたいです: (短くするために非常に単純化されています)
/* define the function for grep */
var grep = function(params, callback) {
// 1) find all text files using `gapi.client.drive.files.list`
// 2) open each file with `gapi.client.drive.files.get`
// 3) scan for the serach string occurance
callback(search_result);
}
/* register the code on the server with imaginary API */
gapi.client.drive.server.register('myapp.grep', grep);
/* execute from Browser */
gapi.client.drive.server.myapp.grep({searchString: 'Abrakadabra', mimeType: 'application/javascript'},
function(resutls) {
console.log(results)
}
);
このアプローチを利用できるアプリケーションの種類は数多くあります。単純な DB マネージャーは別の例です。