最近在联调一些java写的接口时候,发现用postman怎么请求都会多出一个boundary=--------------------------509686223004304881648531的参数所以就一直没有成功
去除boundary参数
- curl_setopt ( $curl, CURLOPT_POST, 1);
- curl_setopt ( $curl, CURLOPT_HTTPHEADER,array('Content-Type: application/x-www-form-urlencoded'));
- curl_setopt ( params));
网友评论