Update and rename api.twilo.php to api.twilio.php

This commit is contained in:
Namhyeon Go 2019-04-15 15:19:57 +09:00 committed by GitHub
parent 3a5138a3f2
commit 27693cca9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,8 +12,10 @@ $action = get_requested_value("action", array("_JSON", "_ALL"));
$from = get_requested_value("from", array("_JSON", "_ALL"));
$to = get_requested_value("to", array("_JSON", "_ALL"));
$sid = "";
$token = "";
$twi = twilio_get_config();
$sid = $twi['twilio_sid'];
$token = $twi['twilio_token'];
$response = "";
switch($action) {