我注意到Spark AR有live streaming module,有没有一种方法可以模拟或测试实时反应和评论,而不必在Facebook上实时发布?
我想测试以下代码是否确实有效,但是我不想在我的facebook帐户上进行实时测试,而是要求人们对此信息流做出反应并发表评论。
const LiveStreaming = require('LiveStreaming');
const Scene = require('Scene');
const matchCounterText = Scene.root.find('text1');
const comments = LiveStreaming.comments;
const matchStrings = ['cat','dog'];
const isCaseSensitive = false;
var leadingCount = 0;
comments.startMatchCounter(matchStrings,isCaseSensitive).subscribe(
function(result) {
for (var key in result) {
if (result[key] > leadingCount) {
matchCounterText.text = key;
leadingCount = result[key];
}
}
});
答案 0 :(得分:0)
Facebook允许您在线上一组特定的朋友。
在“实时设置”下>查看更多>特定朋友>选择可以帮助您测试实时反应和评论的朋友