post請求數(shù)據(jù)格式
- form-data
- x-www-form-urlencoded
- raw
具體見:postman
rmccue/requests中對數(shù)據(jù)格式的處理
數(shù)據(jù)可以是字符串、數(shù)組或?qū)ο?,requests會用http_build_query處理;如果是json,如下處理:
$data = json_encode($data);
$headers = [
'Content-Type: application/json'
];