在使用第三方插件 Guzzle 请求微信素材管理接口:
代码语言:javascript复制接口说明
http请求方式: POST
https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=ACCESS_TOKEN
#参数
{
"type":TYPE,
"offset":OFFSET,
"count":COUNT
}
错误请求代码
代码语言:javascript复制$client = new Client();
$response = $client->post("https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=$token", [
'form_params' => [
"type"=>"news",
"offset"=>0,
"count"=>10
]
]);
错误原因:请求体格式必须是json 格式 尝试修改代码如下:
代码语言:javascript复制$client = new Client();
$response = $client->post("https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=$token", [
'form_params' =>json_encode([
"type"=>"news",
"offset"=>0,
"count"=>10
])
]);
仍旧报错。
经查看Guzzle 手册,正确代码如下:
代码语言:javascript复制$client = new Client();
$response = $client->post("https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=$token", [
'json' => [
"type"=>"news",
"offset"=>0,
"count"=>10
]
]);
可以正常获取到数据。