Paypal return url截断查询字符串。
我的Paypal返回网址是:
$returnURL = "http://localhost/eko/index.php?module=UserPlans&action=PaymentSuccess&Response=success";
并且在paypal添加令牌和付款人ID后会被截断。
截断的网址变为
http://localhost/eko/index.php?module=UserPlans&token=EC-2F968245J76799249&PayerID=PYEYM7DB7XSNN
截断操作和响应。
我的应用程序基于sugarCrm,需要查询字符串中的模块和操作。
答案 0 :(得分:1)
使用网址编码
$returnURL = urlencode("http://localhost/paypal-test/index.php?module=UserPlans&action=PaymentSuccess&Response=success");