
The Browser API makes it easy to open an in-app browser session to show external web content, handle authentication flows, and more.
On iOS this uses SFSafariViewController and is compliant with leading oAuth service in-app-browser requirements.
import { Plugins } from '@capacitor/core';
const { Browser } = Plugins;
await Browser.open({ url: 'http://capacitor.ionicframework.com/' });