使用Kannel post-url但空PHP $_POST



我正在使用kannel 1.4.3并使用如下所示的短信服务

group = sms-service
keyword = default
# keyword-regex = .*
catch-all = yes
max-messages = 0
post-url = "http://127.0.0.1/sms.php?phone=%p&text=%a&first_keyword=%k&second_keyword=%s&words=%r&binary_message=%b&time=%t&unix_time=%T&sms_id=%I&dr=%d&dr_url=%R&meta_data=%D&dr_smsc_reply=%A&message_coding=%c&message_class=%m&message_waiting_indicator=%m&message_charset=%C&udh=%u&xser0cfield=%B&account_identifier=%o&data_coding_schema=%O&smsc_originating_message=%f"

这是短信.php脚本

<?php
    require_once dirname(__FILE__)."/send.php";
    echo "Ting..n";
    $phone = isset($_POST['phone']) ? ($_POST['phone']."n"):"??";
    $text = isset($_POST['text']) ? ($_POST['text']."n"):"??";
    $username = "tester";
    $password = "foobar";
    $to = $_POST['phone'];
    //$text = "Nomor anda adalah : $to";
    //$url = "http://127.0.0.1:13013/cgi-bin/sendsms?username=".$username."&password=".$password."&to=".$to."&text=".urlencode($text);
    //
    //$result = getCURL($url);
    $fh = fopen(dirname(__FILE__)."/debug.txt","a");
    fwrite($fh,
        print_r(array(
            'method'=>$_SERVER['REQUEST_METHOD'],
            'data'=>print_r($_REQUEST,true),
            'header'=>print_r(getallheaders(), 1)
        ),true)
    );
    fclose($fh);
?>

问题是当我发送消息时,所有参数都以 $_GET 而不是 $_POST 接收,即使值是 POST request_method

我如何使用 $_POST 检索所有参数,如电话、文本、关键字等? 而不是 $_GET?

输出示例:

Array
(
    [method] => POST
    [data] => Array
(
    [phone] => +6281210*****628
    [text] => babi pake manjat pohon
    [first_keyword] => babi
    [second_keyword] => pake
    [words] => manjat pohon
    [binary_message] => babi pake manjat pohon
    [time] => 2012-10-09 10:05:49
    [unix_time] => 1349777149
    [sms_id] => 2f3e12ed-5031-4d5f-b1f2-55e3c41063a4
    [dr] => -1
    [dr_url] => %R
    [meta_data] => %D
    [dr_smsc_reply] => babi pake manjat pohon
    [message_coding] => 0
    [message_class] => -1
    [message_waiting_indicator] => -1
    [message_charset] => UTF-8
    [udh] => 
    [xser0cfield] => 
    [account_identifier] => 
    [data_coding_schema] => 00
    [smsc_originating_message] => +628*****0000
)
    [header] => Array
(
    [Host] => 127.0.0.1
    [Connection] => keep-alive
    [User-Agent] => Kannel/1.4.3
    [Content-Type] => text/plain
    [X-Kannel-To] => 13013
    [X-Kannel-Time] => 2012-10-09 10:05:49
    [Date] => 2012-10-09 03:05:56
    [X-Kannel-SMSC] => at-modem
    [X-Kannel-PID] => 0
    [X-Kannel-Alt-DCS] => 0
    [X-Kannel-Coding] => 0
    [X-Kannel-Compress] => 0
    [X-Kannel-Service] => default
    [Content-Length] => 22
)
)

在您的示例中,您是在查询字符串中设置参数,而不是发布数据,这就是您在 $_GET 中看到它们的原因。

$_POST 为空,因为 Kannel 在 X-Kannel-* HTTP 标头而不是 post 字段中提交数据。

请参阅 gw/smsbox.c 行 1306-1431 (v1.4.4)...它们仅在UserGuide.xml的用户指南中,因此阅读源代码将显示使用了哪些标头名称。

您无法选择哪些

名称与 post-url 一起使用,也无法选择哪些参数 - 它们都在每个请求中发送。

有同样的问题...我使用的只是使用 PHP $_REQUEST 代替..因此,无论是$_GET还是$_POST能够处理信息并不重要。

如果您想有一个 POST 请求,您可以尝试post-xml选项

最新更新