尝试识别Hubspot中的访客不起作用

时间:2019-10-30 21:36:38

标签: javascript reactjs hubspot

我正在尝试使用网站上的Hubspot小部件来标识正在传递消息的访问者,但消息仍未分配地显示在Hubspot的收件箱中。

在遵循文档之后,我将存储用户信息并调用函数trackPageView()

_identifyHubspot(){
    if(this.currentUser){
        let _hsq = window._hsq = window._hsq || [];
            _hsq.push(["identify",{
                email: this.currentUser.attributes.email,
                id: this.currentUser.username,
                avatar_url: this.currentUser.attributes.picture,
                lastname: this.currentUser.attributes['family_name'],
                firstname: this.currentUser.attributes['given_name'],
                purpose: this.currentUser.attributes['custom:type']
            }]);
        }
}

我希望收到访客的信息,但是我收到一个陌生的访客。

0 个答案:

没有答案