User requests to connect to the website

DEPRECATED Message ID: connectWeb This message is generated when:

Developers can get the connection request message by listening to it:

window.addEventListener('message', function (e) {
  if (e.data.message && e.data.message.action == "connectWeb") {
    // handler logic
    console.log('got connectWeb event', e.data)
  }
})

Last updated