代码之家  ›  专栏  ›  技术社区  ›  Ivan

当用户使用Twilio通过短信回复停止时,如何使用用户号码进行回调?

  •  -3
  • Ivan  · 技术社区  · 6 年前

    我想知道如何获得用户的号码或一些数据来更新数据库,以选择在我的服务器使用从Twilio回调时,用户通过短信回复停止。

    我在用PHP。

    如何解决这个问题?

    1 回复  |  直到 6 年前
        1
  •  0
  •   Ivan    6 年前

    我设法比较了一下 $_POST['Body']

    // You need to include Twilio library path here... for example require_once '/path/to/twilio-lib/autoload.php';
    use Twilio\Twiml;
    
    global $wpdb;
    
    $response = new Twiml;
    
    
        if (!empty($_POST))
        {
            $number = $_POST['From'];
            $body = $_POST['Body'];
            $default = "Hi " .$number. ", I'm a bot, please do not reply until you will get an update in some day. Have a nice day!";   
    
    
            $result = preg_replace("/[^A-Za-z0-9]/u", " ", $body); 
            $result = trim($result); 
            $result = strtolower($result); 
    
    
    
            //words to match and $result must be lowercase to define.
            if ($result == 'stop' || $result == 'stopall' || $result == 'cancel' || || $result == 'end') || $result == 'quit' || $result == 'unsubscribe'{
             //Your function to update database with $number
    
            }
            else if ($result == 'start' || $result == 'yes' || $result == 'unstop'){
                $response->message('Thanks for re-subscribing');
               //Your function to update database, again with $number
            }   
             else {
                $response->message($default);
            }
    
            print $response;
        }