任何人都知道如何使用nexmo sms api接收短信到php脚本

时间:2016-11-11 06:43:46

标签: php mysql api sms nexmo

我正在尝试实现nexmo sms api从手机接收短信并保存到mysql表。我考虑过nexmo。我抓住了文件。但混淆了如何使用它

https://docs.nexmo.com/messaging/sms-api
am trying to implement nexmo sms api to receive sms from phone and save to mysql table. i took account in nexmo. i ckeched the documentation. but confused how to use it

任何人都知道如何从手机发送短信时接收短信到我的脚本,然后请帮助我 我想将sms提取到脚本并保存到mysql表

public function myinformation() {
   $request = array_merge($_GET, $_POST);

// Check that this is a delivery receipt.
if (!isset($request['messageId']) OR !isset($request['status'])) {
    error_log('This is not a delivery receipt');
    return;
}

//Check if your message has been delivered correctly.
if ($request['status'] == 'delivered') {
    error_log("Your message to {$request['msisdn']} (message id {$request['messageId']}) was delivered.");
    error_log("The cost was {$request['price']}.");
     $From = $this->input->post('saleena@gmail.com');
        $ToEmail = $this->input->post('saleena@gmail.com');
        $message = "Results: " . print_r( $request, true );
           $this->load->library('email');
        $subject = 'My Attempt';

        // Get full html:
        $body = '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=' . strtolower(config_item('charset')) . '" />
    <title>' . html_escape($subject) . '</title>
    <style type="text/css">
        body {
            font-family: Arial, Verdana, Helvetica, sans-serif;
            font-size: 16px;
        }
    </style>
</head>
<body>
' . $message . '
</body>
</html>';
      $result = $this->email
                ->from($From)
                // Optional, an account where a human being reads.
                ->to($ToEmail)
                ->subject($subject)
                ->message($body)
                ->send();

        var_dump($result);
        echo $this->email->print_debugger();
        exit;      

} elseif ($request['status'] != 'accepted') {
    error_log("Your message to {$request['msisdn']} (message id {$request['messageId']}) was accepted by the carrier.");
    error_log("The cost was {$request['price']}.");
} else {
    error_log("Your message to {$request['msisdn']} has a status of: {$request['status']}.");
    error_log("Check err-code {$request['err-code']} against the documentation.");
}
    }

我尝试了这个代码。但我没有收到任何邮件到我的邮件

1 个答案:

答案 0 :(得分:0)

您可以使用Nexmo的SMS API,它允许您通过简单的HTTP呼叫在200多个国家/地区发送文本。

您可以注册一个允许您发送短信的虚拟号码。也接收收到的消息。

对于2FA,您可以使用验证API对特定设备的用户进行身份验证。

此方法比使用SMS API更安全,并且您自己随机生成数字。然后该引脚将由最终用户输入&amp;由Verify API检查。

使用这些API中的任何一个都需要几行代码。下面是PHP中的一段代码,它允许您使用SMS API发送文本。