Many existing questions are about implementing on Object-C or Swift. But I want to know what to do on the server-side.
For example, I tried to redirect to chrome like below.
// nodejs-express server at 10.0.1.4:5000
router.get('/gotochrome', function(req, res, next) {
res.redirect('googlechrome://www.naver.com');
});
and following picture is a screen shot of mobile messenger app.
iOS messenger app (kakao talk) when I click the message, in-app webview is opened and chrome is opened with www.naver.com almost simultaneously.
Would it be possible for Safari?