如何在Postman上应用curlopt_postfields?

68bkxrlz  于 2022-11-07  发布在  Postman
关注(0)|答案(1)|浏览(277)

我有这个curlopt_postfields代码片段

CURLOPT_POSTFIELDS =>'{
"No":"893049193012",
"Id":"test_1",
"Token":"jkkhsjkhfkeiuryi"
}'

问题是如何将这些curlopt_postfields应用到postman上?2它是作为参数部分参数?3还是作为主体部分的参数?

wmtdaxz3

wmtdaxz31#

你应该显示你的代码从 Postman 。
这可能对你有帮助。

curl  http://example.com -X post --header 'Content-Type:application/json' -d '{"No":"893049193012","Id":"test_1","Token":"jkkhsjkhfkeiuryi"}'

以上转换为:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://example.com');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'post');
curl_setopt($ch, CURLOPT_HTTPHEADER, [
    'Content-Type' => 'application/json',
]);
curl_setopt($ch, CURLOPT_POSTFIELDS, '{"No":"893049193012","Id":"test_1","Token":"jkkhsjkhfkeiuryi"}');

$response = curl_exec($ch);

当您在post数据中发送JSON时,您需要在请求报头中包含Content-Type =〉application/json。

相关问题