I’m integrating a PayZen payment gateway.
My API call returns the correct payment_url (I can see it in the Debug Panel).
After tapping a subscription plan, the app navigates to a WebView page, but it shows a blank screen.
I’ve confirmed:
The API response is 200 with a valid URL (https://secure.payzen.eu/…).
The WebView is supposed to load that URL.
Setup details:
Body type:
x-www-form-urlencodedAPI variables:
uid,plan_id,plan_tierWebView page has parameter:
paymentUrl(String)Action flow: API Call → Navigate to WebView Page → Pass parameter
paymentUrl = PayZen Payment Response.payment_url
Question
:
What’s the correct way to bind the WebView to the paymentUrl parameter so that it loads automatically?
Is there any known issue with loading external HTTPS payment pages inside WebView?