We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Paystack no longer supports localhost testing for callback URLs and webhook URLS on https://dashboard.paystack.com/#/settings/developers
The text was updated successfully, but these errors were encountered:
@Iconbanderas you can use ngrok to generate an https URL and tunnel requests to localhost
Sorry, something went wrong.
Just use a custom callback url in your code like this;
$data = [ 'amount' => ($amount * 100), 'email' => $request->email, 'currency' => 'NGN', 'reference' => Paystack::genTranxRef(), 'metadata' => [], 'callback_url' => route('payment.verify') ];
Just use https://127.0.0.1/callback instead and you're good
No branches or pull requests
Paystack no longer supports localhost testing for callback URLs and webhook URLS on https://dashboard.paystack.com/#/settings/developers
The text was updated successfully, but these errors were encountered: