User accepts connection

DEPRECATED Message ID: acceptWeb This message is generated when:

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)
  }
})

Last updated