diff --git a/docs/digital-wallets/intro.md b/docs/digital-wallets/intro.md index de97160..4be32f2 100644 --- a/docs/digital-wallets/intro.md +++ b/docs/digital-wallets/intro.md @@ -15,16 +15,16 @@ These payment options offer a seamless and convenient way for your customers to ### Mobile integration: - If you are redirecting to Topper through the user's browser, no extra configuration is necessary. -- When Topper is embed with a `WebView`, ensure setting `is_android_app=1` or `is_ios_app=1` as a query parameter in the URL. +- When Topper is embed with a `WebView`, ensure setting `is_android_webview=1` or `is_ios_webview=1` as a query parameter in the URL. - When Topper is opened using a `Safari View Controller`, ensure setting `is_safari_view_controller=1` as a query parameter in the URL. **Example URLs:** -- Android: `https://app.topperpay.com/?bt=&is_android_app=1` -- iOS: `https://app.topperpay.com/?bt=&is_ios_app=1` +- Android: `https://app.topperpay.com/?bt=&is_android_webview=1` +- iOS: `https://app.topperpay.com/?bt=&is_ios_webview=1` - Safari View Controller: `https://app.topperpay.com/?bt=&is_safari_view_controller=1` **Using the [Web SDK](../web-sdk.md):** -- Android: `topper.initialize({ bootstrapToken: , { is_android_app: true } });` -- iOS: `topper.initialize({ bootstrapToken: , { is_ios_app: true } });` +- Android: `topper.initialize({ bootstrapToken: , { is_android_webview: true } });` +- iOS: `topper.initialize({ bootstrapToken: , { is_ios_webview: true } });` - Safari View Controller: `topper.initialize({ bootstrapToken: , { is_safari_view_controller: true } });` diff --git a/docs/single-sign-on.md b/docs/single-sign-on.md index 9c01ea4..e1ea140 100644 --- a/docs/single-sign-on.md +++ b/docs/single-sign-on.md @@ -41,14 +41,14 @@ This creates a better experience for users because they can use their existing c **Notes:** - If you are redirecting to Topper through the user's browser, no extra configuration is necessary. -- When Topper is embed with a `WebView`, ensure setting `is_android_app=1` or `is_ios_app=1` as a query parameter in the URL. +- When Topper is embed with a `WebView`, ensure setting `is_android_webview=1` or `is_ios_webview=1` as a query parameter in the URL. **Example URLs:** -- Android: `https://app.topperpay.com/?bt=&is_android_app=1` -- iOS: `https://app.topperpay.com/?bt=&is_ios_app=1` +- Android: `https://app.topperpay.com/?bt=&is_android_webview=1` +- iOS: `https://app.topperpay.com/?bt=&is_ios_webview=1` **Using the [Web SDK](./web-sdk.md):** -- Android: `topper.initialize({ bootstrapToken: , { is_android_app: true } });` -- iOS: `topper.initialize({ bootstrapToken: , { is_ios_app: true } });` +- Android: `topper.initialize({ bootstrapToken: , { is_android_webview: true } });` +- iOS: `topper.initialize({ bootstrapToken: , { is_ios_webview: true } });`