integrar - paypal/rest-api-sdk-php laravel
Paypal devuelve el error Access-Control-Allow-Origin (0)
He logrado llegar hasta el final de la solicitud de pago inicial a Paypal, pero ahora he topado con una pared de ladrillos.
El siguiente código intenta redireccionar a Paypal
foreach ($result->links as $link)
{
if($link->method == "REDIRECT")
{
$redirect_url = $link->href;
}
}
header("Location: " . $redirect_url);
El $ redirect_url es https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=EC-6H386134VK1125507 .
Sin embargo, esto devuelve el siguiente error.
XMLHttpRequest cannot load https://www.sandbox.paypal.com/cgi-bin/webscr?cmd=_express-checkout&token=EC-6H386134VK1125507.
No ''Access-Control-Allow-Origin'' header is present on the requested resource.
Origin ''http://localhost:1000'' is therefore not allowed access.
¿Hay algo más que deba configurar en Paypal, o necesito cambiar algo en el redireccionamiento?