b6e8173b24
* feat: HMAC verification for web widget. Let you verify the authenticated contact via HMAC on the web widget to prevent data tampering. * Add docs for identity-validation Co-authored-by: Pranav Raj S <pranav@chatwoot.com>
44 lines
971 B
Text
44 lines
971 B
Text
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0" />
|
|
|
|
|
|
<%
|
|
user_id = 1
|
|
user_hash = OpenSSL::HMAC.hexdigest(
|
|
'sha256',
|
|
@web_widget.hmac_token,
|
|
user_id.to_s
|
|
)
|
|
|
|
%>
|
|
<script>
|
|
|
|
window.chatwootSettings = {
|
|
hideMessageBubble: false,
|
|
position: 'left',
|
|
locale: 'en',
|
|
type: 'expanded_bubble',
|
|
showPopoutButton: true,
|
|
};
|
|
|
|
(function(d,t) {
|
|
var BASE_URL = '';
|
|
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
|
|
g.src= BASE_URL + "/packs/js/sdk.js";
|
|
s.parentNode.insertBefore(g,s);
|
|
g.onload=function(){
|
|
window.chatwootSDK.run({
|
|
websiteToken: '<%= @web_widget.website_token %>',
|
|
baseUrl: BASE_URL
|
|
})
|
|
}
|
|
})(document,"script");
|
|
|
|
window.addEventListener('chatwoot:ready', function() {
|
|
console.log(window.$chatwoot);
|
|
window.$chatwoot.setUser('<%= user_id %>', {
|
|
identifier_hash: '<%= user_hash %>',
|
|
email: 'jane@acme.inc',
|
|
name: 'Jane Doe'
|
|
});
|
|
})
|
|
</script>
|