You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This keeps happening on laravel 8 and PHP 7.3, Is there a permanent fix? How do we fix the paystack token always getting expired? Or does this not work for test keys?
The text was updated successfully, but these errors were encountered:
Some required parameters to initiate the payment might be missing from your $request, you can try output the error
under the catch block to see more details on what went wrong.
You can try this
try {
returnPaystack::getAuthorizationUrl()->redirectNow();
} catch (\Exception$e) {
return$e->getMessage(); //Output the error hereecho"The paystack token has expired. Please refresh the page and try again.";
}
This keeps happening on laravel 8 and PHP 7.3, Is there a permanent fix? How do we fix the paystack token always getting expired? Or does this not work for test keys?
The text was updated successfully, but these errors were encountered: