无法将 POST curl 从命令行转换为 php

2021-12-30 00:00:00 post curl php parse-platform

我在将 curl 命令转换为 php 时遇到问题.

I am having trouble converting my curl command into php.

这部分效果很好.

将条目添加到 Parse.com 数据库的 CURL 命令:

CURL command that adds an entry into my Parse.com database:

curl -X POST 
  -H "X-Parse-Application-Id: my_id" 
  -H "X-Parse-REST-API-Key: api_id" 
  -H "Content-Type: application/json" 
  -d "{"SiteID":"foundID","dataUsedString":"foundUsage","usageDate":"foundDate", "monthString":"foundMonth", "dayString":"foundDay","yearString":"foundYear"}" 
  https://api.parse.com/1/classes/MyClass

已解决的答案:

我创建了这个 php 脚本来复制命令:

I have created this php script to replicate the command:

   <?php 
   $ch = curl_init('https://api.parse.com/1/classes/MyClass');

curl_setopt($ch,CURLOPT_HTTPHEADER,
    array('X-Parse-Application-Id:my_id',
'X-Parse-REST-API-Key:api_id',
'Content-Type: application/json'));

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{"SiteID":"foundID","dataUsedString":"foundUsage","usageDate":"foundDate", "monthString":"foundMonth", "dayString":"foundDay","yearString":"foundYear"}");

curl_exec($ch);
curl_close($ch);
?>

推荐答案

您错过了一些重要的配置.这些是设置 CURL 以使用 POST 发送请求,第二个是要发送的数据.(原始数据作为字符串发送到 POSTFIELDS,如果你发送数组 - 它会自动附加标题multipart/form-data"

You've missed some crucial configurations. These are the set the CURL to send request using POST, and the second is data to send. (RAW DATA is being sent as string into POSTFIELDS, those if you send array - it will automatically append header "multipart/form-data"

$ch = curl_init('https://api.parse.com/1/classes/MyClass');

curl_setopt($ch,CURLOPT_HTTPHEADER,
  array(
    'X-Parse-Application-Id:my_id',
    'X-Parse-REST-API-Key:api_id',
    'Content-Type: application/json'
  )
);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, "{"SiteID":"foundID","dataUsedString":"foundUsage","usageDate":"foundDate", "monthString":"foundMonth", "dayString":"foundDay","yearString":"foundYear"}");
curl_exec($ch);
curl_close($ch);

HTH:)

相关文章