-2

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 マネージャーは別の例です。

4

1 に答える 1

3

あなたが望むものに近い静かなGoogle Apps ScriptGoogle App Engineがあります。Google ドライブにはその機能がないと思います。

于 2013-06-22T03:03:04.987 に答える