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 使其看起来有点类似于请求。

另一个问题是对 Crypto 的支持。我们最终使用了crypto browserify

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

于 2014-10-22T19:57:08.523 回答