Olá a todos,
Estou realizando alguns testes no Blip Chat, preciso passar uma variável no contact.extras, segui este tutorial:
Criei uma página html simples rodando pelo apache:
<html>
<header>
<script src="https://unpkg.com/[email protected].*" type="text/javascript"></script>
<script>
(function () {
window.onload = function () {
var blipClient = new BlipChat();
blipClient
.withAppKey('MINHA KEY')
.withAccount({
fullName: 'John Doe',
email:'[email protected]',
phoneNumber: '+15055034455',
city: 'Decatur',
extras:{
plan: 'gold'
}
})
blipClient.withoutHistory()
.build();
}
})();
</script>
</header>
<body>
teste
</body>
</html>
O bot está me respondendo normalmente, porém os dados do extras não estão sendo gravados no contato:
Alguém consegue me dar uma força? Obrigado!