User requests to connect to the website
DEPRECATED
Message ID:
connectWeb
This message is generated when:- 1.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)
}
})
Last modified 1yr ago