I have a webview in my bot. I have the following JS code to close it:
complete: function (data) {
MessengerExtensions.requestCloseBrowser(function success() {
}, function error(err) {
window.close()
});
console.log("post success");
}
The webview is being closed on ANDROID and WEB But NOT on IOS.
Any help would be appreciated.