在内部通信上显示自定义消息

时间:2018-06-01 10:57:32

标签: javascript jquery intercom

我使用Javascript在我的网站上安装了对讲机

//Set your APP_ID
var APP_ID = "APP_ID";
var current_user_email = "sartre@existentialist.com";
var current_user_name = "Jean Paul Sartre";
var current_user_id = "1940";

window.intercomSettings = {
    app_id: APP_ID,
    name: current_user_name, // Full name
    email: current_user_email, // Email address
    user_id: current_user_id // current_user_id
  };
(function(){var w=window;var ic=w.Intercom;if(typeof ic==="function")
{ic('reattach_activator');ic('update',intercomSettings);}else
{var d=document;var i=function(){i.c(arguments)};i.q=[];i.c=function(args)
{i.q.push(args)};w.Intercom=i;function l()
{var s=d.createElement('script');s.type='text/javascript';s.async=true;
s.src='https://widget.intercom.io/widget/' + APP_ID;
var x=d.getElementsByTagName('script')[0];
x.parentNode.insertBefore(s,x);}if(w.attachEvent){w.attachEvent('onload',l);}
else{w.addEventListener('load',l,false);}}})()

我在内部通信接口上设置的页面加载时显示自定义欢迎消息。

现在我有一个链接,我必须打开内部通信弹出窗口并向用户显示来自管理员的新消息。 我可以从javascrit "Intercom('showNewMessage');"打开对讲机,但无法查看该消息。 请建议。

0 个答案:

没有答案