#feminaagravat_39821
1 messages · Page 1 of 1 (latest)
Hello! We'll be with you shortly. Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- femina-customer-portal, 16 hours ago, 16 messages
- feminaagravat_39821, 3 days ago, 56 messages
- feminaagravat_39821, 4 days ago, 8 messages
After your customer successfully completes the flow, User should redirect to my website . For that i want to add extra query string parameter
'flow_data' =>[
'type'=>'payment_method_update',
'after_completion' => [
'type' => 'redirect',
'redirect' => ['return_url' => $this->baseURL.'owner/renewal/?paymentUpdated=true'],
],
]
So when I udpate the payment method , it redirects but it omit the paymentUpdated=true
I can't see paymentUpdated=true parameter when it redirects
I just tried this and it works.
Maybe your endpoint is removing the query param?
Try testing with google.com/?foo=bar
ok
let me try
I got the issue
'return_url' => $this->baseURL.'owner/renewal',
'flow_data' =>[
'type'=>'payment_method_update',
'after_completion' => [
'type' => 'redirect',
'redirect' => ['return_url' => 'https://www.google.com/?foo=bar'],
],
]
Search the world's information, including webpages, images, videos and more. Google has many special features to help you find exactly what you're looking for.
it is not considering the redirect mentioned in after_completion . It is taking to $this->baseURL.'owner/renewal
Are you sure you're completing the flow?
From what cache?
I tested with the flow_data and it redirects to the correct URL. Could you please share a screen recording of the behavior you're observing?
yes
Also I have a question , is there a way that session always start fresh so that we will not experiance session is expired error message
This is working fine. There was some cache issue that's why it was taking the old return url
How are you redirecting the customer to the page?