iOS 26.2+, React Native Webview(Expo) 상에서 카드결제 시도시 '인증요청 파라메타값 확인 요망' 표시

. 를 WebView.

근 iOS, , 시 iOS(2101) /. (, .)
/-.

:
"expo": "~54.0.27",
"@tosspayments/widget-sdk-react-native": "^1.5.1",
"react-native-webview": "13.15.0"


import { WebView } from "react-native-webview";

const [currentUrl, setCurrentUrl] = useState<string>('https://home-page.url');

const props = {
    source: { uri: currentUrl },
    injectedJavaScriptBeforeContentLoaded: '...',
    injectedJavaScript: '...',
    sharedCookiesEnabled: true,
    contentMode: "mobile",
    thirdPartyCookiesEnabled: true,
    domStorageEnabled: true,
    javaScriptEnabled: true,
    mixedContentMode: "compatibility",
    startInLoadingState: false,
    originWhitelist: ["*"],
    cacheEnabled: true,
    incognito: false,
    useSharedProcessPool: true,
    allowUniversalAccessFromFileURLs: true,
}

return <WebView
    {...props}
/>


: , , , , , , , , ,
():
: ,
Was this page helpful?