0

好的,所以我已经集成了它,它在基本层面上运行良好,但我有 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;
   }
}

为了获取登录用户的信息,比如谷歌?我可以对 FB、LinkedIn 等做同样的事情吗?

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

提前谢谢了。

4

1 回答 1

0

所以,我把这个整理好了。将以下内容放入 client/lib/main.js....

IntercomSettings.userInfo = function(user, info) {
    info.email = Meteor.user().emails[0].address;
    info['name'] = Meteor.user().username;
};
于 2016-05-27T11:42:47.733 回答