doufan9805 2017-04-11 16:57
浏览 44
已采纳

intercom.io与Socialengine 4

I want to pass through at minimum the username and email of anyone who connects using our intercom.io account. What I cannot figure out is how to pull the username and email address from the current user. I have put the following code under Settings-->General Settings-->Head Scripts/Styles

<script>
  window.intercomSettings = {
    app_id: "*REDACTED*",
    name: "<?php echo $current_user->name ?>", // Full name
    email: "<?php echo $current_user->email ?>" // Email address
  };
  </script>
<script>(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/jqw7sscx';var x=d.getElementsByTagName('script')[0];x.parentNode.insertBefore(s,x);}if(w.attachEvent){w.attachEvent('onload',l);}else{w.addEventListener('load',l,false);}}})()</script>

How do I pull the information to populate into intercom.io

  • 写回答

1条回答 默认 最新

  • duanmaifu3428 2017-05-11 14:34
    关注

    Get current authorized user:

    $user = Engine_Api::_()->user()->getViewer();
    

    Get "displayname":

    echo $user->getTitle();
    

    Get email:

    if (isset($user->email)) {echo $user->email;}
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 CATIA有些零件打开直接单机确定终止
  • ¥15 请问有会的吗,用MATLAB做
  • ¥15 phython如何实现以下功能?查找同一用户名的消费金额合并—
  • ¥15 ARIMA模型时间序列预测用pathon解决
  • ¥15 孟德尔随机化怎样画共定位分析图
  • ¥18 模拟电路问题解答有偿速度
  • ¥15 CST仿真别人的模型结果仿真结果S参数完全不对
  • ¥15 误删注册表文件致win10无法开启
  • ¥15 请问在阿里云服务器中怎么利用数据库制作网站
  • ¥60 ESP32怎么烧录自启动程序,怎么查看客户esp32板子上程序及烧录地址