-
Notifications
You must be signed in to change notification settings - Fork 11
adding missing functions for retrun url in gateway. #3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Thats the wrong place to add them. This functions already exists in: |
I was unable to get or set them. I got undefined function error |
Pls take a look here: https://github.com/thephpleague/omnipay
Pass the options through to the method like so: $card = new CreditCard($formData);
$request = $gateway->authorize(array(
'amount' => '10.00', // this represents $10.00
'card' => $card,
'returnUrl' => 'https://www.example.com/return',
)); |
hey thanks for letting me know I will close this request can you tell me how can I set callbackURL in it? |
callbackUrl = notifyUrl |
nope not that one. Their is an optional CallBackURL in ecopayz document which tells the transfer is complete or not. |
notifyURL is a transferUrl |
Why do you need the CallbackUrl? Its not enabled by default and TransferUrl will do the same TransferUrl URL CallbackUrl (Not required) URL N.B! This function is not enabled by default. In order to enable ‘Callback’ you have to provide us (technicalsupport@ecopayz.com) with an URL and request activation of this feature for your Merchant account. It can be the same URL as your Listener or a different URL. |
Thanks man this will do the trick. |
[PIW-20] fixed refresh token request Approved-by: Cydrick Nonog <cydrick.nonog@zmtsys.com>
Add functions which were missing to set success, failure and transfer URL.