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
In PayumBundle/Security/HttpRequestVerifier.php:39
if (! $hash = $httpRequest->attributes->get('payum_token', $httpRequest->get('payum_token', false))) {
throw new NotFoundHttpException('Token parameter not set in request');
}
This line checks if the payum_token parameter is valid. However Stripe doesn't append this parameter to the url nor to the attributes. It is only set if you access
if (! RequestTokenVerifier::isValid($httpRequest->getUri(), $token->getTargetUrl())) {
throw new HttpException(400, sprintf('The current url %s not match target url %s set in the token.', $httpRequest->getUri(), $token->getTargetUrl()));
}
The text was updated successfully, but these errors were encountered:
In PayumBundle/Security/HttpRequestVerifier.php:39
This line checks if the payum_token parameter is valid. However Stripe doesn't append this parameter to the url nor to the attributes. It is only set if you access
one workaround would be to write the token_hash to the url with
however this will fail the following check
The text was updated successfully, but these errors were encountered: