gpt4 book ai didi

php curl 帖子重定向

转载 作者:可可西里 更新时间:2023-10-31 23:39:37 25 4
gpt4 key购买 nike

我正在尝试集成银行 api 以进行重定向支付。我正在使用 curl 发布方法,但我希望能够在发布后遵循重定向。这是我的代码

curl_setopt($ch, CURLOPT_URL, 'https://paycenter.piraeusbank.gr/redirection/pay.aspx');  
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, array(
'data' => $data
));
$content = curl_exec($ch);

在发布后它假设我必须在像

这样的 url 中重定向
https://paycenter.piraeusbank.gr/redirection/4234sgsfdgfsg/pay.aspx

而不是我重定向到:

http://mytestdomain.org/redirection/4234sgsfdgfsg/pay.aspx

这显然以 404 错误结束

最佳答案

您需要操纵您的响应,然后编写硬代码以将此脚本重定向到特定页面,因为 curl 在您的服务器上执行该 url。

关于php curl 帖子重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30319286/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com