将getstream.io与Parse集成

时间:2014-10-15 08:47:04

标签: parsing cloud-code getstream-io

有没有办法将getstream.io与Parse集成,因此Cloud Code可以将活动发送到getstream?

getstream javascript api需要哪些文件?

1 个答案:

答案 0 :(得分: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 hook hooks

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