Site set to Live but still not redirecting to payment option


#1

Good day, after my site set to Live i’m still receiving status=Ok. how can it redirect to the payment option.image


#2

You need to redirect the user to the browserurl to make payment.
If you are using the php sdk, then use the redirectUrl() method from the response object


#3

If response is successful use

header('location: ’ . $response->redirectUrl());


#4

Ok thanks, thats what i was missing.