从表单请求中获取数据并将其作为发布请求发送出去似乎不起作用

时间:2020-03-04 17:31:11

标签: php html curl post php-curl

这是我的表单(html):

<div class="body"> 
    <form method="post" action="index.php">
        <div id="form"> 
            <div class="formInput"> 
                <label>To: 
                <input type="text" name="to" id="to" /> 
                </label> 
            </div> 
            <div class="formInput"> 
                <label>From: 
                <input type="text" name="from" id="from" /> 
                </label> 
            </div> 
            <div class="formInput"> 
                <label>Message: 
                <input type="text" name="message" id="message" /> 
                </label> 
            </div>
            <div class="formInput"> 
                <label>Email: 
                <input type="text" name="email" id="email" /> 
                </label> 
                <div class="formInput"> 
                <label>Api_Secret: 
                <input type="text" name="api_secret" id="api_secret" /> 
                </label> 
            </div> 
            </div> 
            <input type="submit" value="Submit" /> 
        </div> 
    </form>

这是我的php,它使用curl处理http请求:

to通常是数字

from是数字或字符串

消息既包含数字又包含字符串

电子邮件只是普通的email@email.com

api_secret包括数字和字符串。

<?php
$ch = curl_init();

curl_setopt_array($ch, [
    CURLOPT_URL => 'https://domainname.com/dashboard/api',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => [
        'to' => $_POST['to'],
        'from' => $_POST['from'],
        'message' => $_POST['message'],
        'email' => $_POST['email'],
        'api_secret' => $_POST['api_secret'],
    ],
]);

$response = curl_exec($ch);

curl_close($ch);

echo($response);
?>

正确的请求表单应如下所示:

https://domainname.com/dashboard/api?to={PHONE NUMBER}&from={SENDER ID}&message={TEXT}&email{YOUREMAIL}&api_secret={API SECRET}

但是似乎没有任何东西要从表单中获取和发送...我尝试使用PostBin的Query和Body看起来都是空的。 我不知道该怎么办或如何从这里开始。 非常感谢您的帮助。

更新: 更改了php,使其正确发布了数据:

<?php
$ch = curl_init();

curl_setopt_array($ch, [
    CURLOPT_URL => 'https://domainname.com/dashboard/api',
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => [
        'to' => $_POST['to'],
        'from' => $_POST['from'],
        'message' => $_POST['message'],
        'email' => $_POST['email'],
        'api_secret' => $_POST['api_secret'],
    ],
]);

$response = curl_exec($ch);

curl_close($ch);

echo($response);
?>

查询看起来像这样:

123&text&text2&email@email.com&123abc

它看起来像这样:

123:text:text2:email@email.com:123abc:

1 个答案:

答案 0 :(得分:0)

如果这是您的API调用所要求的,则它将数据作为参数发送,而不是在POST FIELDS中发送。

https://domainname.com/dashboard/api?to={PHONE NUMBER}&from={SENDER ID}&message={TEXT}&email{YOUREMAIL}&api_secret={API SECRET}

如果您需要将这些值作为带有参数的POST请求发送,这就是您所需要的。

$url = 'https://domainname.com/dashboard/api';
$sep = '?';
foreach(['to', 'from', 'message', 'email', 'api_secret'] as $key) {
   $url .= $sep . $key=$_POST[$key];
   if ( $sep == '?' ) $sep = '&';
}
$ch = curl_init();

curl_setopt_array($ch, [
    CURLOPT_URL => $url,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POST => true]);
$response = curl_exec($ch);

curl_close($ch);

echo($response);