post请求数据格式
- form-data
- x-www-form-urlencoded
- raw
具体见:postman
rmccue/requests中对数据格式的处理
数据可以是字符串、数组或对象,requests会用http_build_query处理;如果是json,如下处理:
$data = json_encode($data);
$headers = [
'Content-Type: application/json'
];
具体见:postman
数据可以是字符串、数组或对象,requests会用http_build_query处理;如果是json,如下处理:
$data = json_encode($data);
$headers = [
'Content-Type: application/json'
];
本文标题:rmccue/requests问题
本文链接:https://www.haomeiwen.com/subject/caanwxtx.html
网友评论