沃梦达 / 编程问答 / php问题 / 正文

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

Trouble converting POST curl from command line to php(无法将 POST curl 从命令行转换为 php)

本文介绍了无法将 POST curl 从命令行转换为 php的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在将 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:)

这篇关于无法将 POST curl 从命令行转换为 php的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:无法将 POST curl 从命令行转换为 php

基础教程推荐