Last updated 2 years ago
DEPRECATED Message ID: connectWeb This message is generated when:
connectWeb
The user requests to connect to the website.
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) } })