如何设置引流广告条显示的延迟时间?
在 Web SDK 中运行一段时间后,可以通过登录 Pageview 来延迟 Journey (站到端引流)。
setTimeout(function () {
branch.closeJourney(function (err, data) {
if (err) {
console.log(err, data);
} else {
setTimeout(function () {
/*
This key/value pair is entirely arbitrary.
Its only purpose is to be found by a condition specified in the Branch dashboard.
*/
branch.track('pageview', {
'delay': '10'
});
}, 1000);
}
});
}, 10000);
Updated over 2 years ago