Links

User accepts connection

DEPRECATED Message ID: acceptWeb This message is generated when:
  1. 1.
    The user accepts connection.
Developers can get the connection acceptance message by listening to it:
window.addEventListener('message', function (e) {
if (e.data.message && e.data.message.action == "acceptWeb") {
// handler logic
console.log('got acceptWeb event', e.data)
}
})