1

getstream.io を Parse と統合して、Cloud Code がアクティビティを getstream に送信できるようにする方法はありますか?

getstream javascript API に必要なファイルは何ですか?

4

1 に答える 1

2

サンプルアプリ

実際に、Parse Cloud と getstream.io を使用して小さなサンプル アプリを作成しました。

デモ: https://getstream.parseapp.com/

コード: https://github.com/tschellenbach/Stream-Example-Parse

さらに、JS クライアントは解析クラウドと互換性があります: https://github.com/getstream/stream-js

バックグラウンド

この例では after save フックと after delete フックを使用しています

Parse.Cloud.afterSave("Picture", function(request, response) {
  // trigger fanout
  console.log("Picture Saved");
});

クライアントをパース クラウドと連携させるには、パース ネットワーキング ライブラリ https://www.parse.com/docs/cloud_code_guide#networkingを使用し ます。API をラップして、リクエストと似たように見せます。

もう 1 つの問題は、Crypto のサポートです。最終的には crypto browserify を使用することになりました

https://github.com/dominictarr/crypto-browserify

于 2014-10-22T19:57:08.523 に答える