我正在尝试使用verso:intercom将Intercom集成到一个流星应用程序中

时间:2016-05-24 22:29:15

标签: javascript node.js meteor single-page-application intercom

好的,所以我已经集成了它,它在基本级别上工作正常,但我有2个相关的问题....

首先,我在哪里放这个代码

IntercomSettings.userInfo = function(user, info) {
// add properties to the info object, for instance:
if (user.services.google) {
   info.email = user.services.google.email;
   info['Name'] = user.services.google.given_name + ' ' +    user.services.google.family_name;
   }
}

为了获取登录用户的信息,Google?我可以对FB,LinkedIn等做同样的事吗?

其次,如何将登录到我的应用程序的用户信息发送到对讲机? (我收到了userId,位置,访问过的最后一页)

非常感谢提前。

1 个答案:

答案 0 :(得分:0)

所以,我把它排序了。将以下内容放在client / lib / main.js ....

IntercomSettings.userInfo = function(user, info) {
    info.email = Meteor.user().emails[0].address;
    info['name'] = Meteor.user().username;
};