好的,所以我已经集成了它,它在基本层面上运行良好,但我有 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 、位置、访问的最后一页)
提前谢谢了。