Ist das nicht auch ein Plugin? Siehe #2
Wenn nicht, dann gehört es jedenfalls ins webfrontend/legacy Verzeichnis.
<?php // Diese Werte müssen angepasst werden ----------------------------------------------------- $sid = "xxxxxxxxxxxxxxxxx"; $token = "xxxxxxxxxxxxxxxxxxxx"; $YourNumber = "+43xxxxxxxx"; $TwiMLBinUrl = "https://handler.twilio.com/twiml/xxxxxxxxxxxxxxxxxxxxxxxxxxxxx?Text="; $timeout = "19"; //------------------------------------------------------------------------------------------ [B]require_once './twilio-php-master/Twilio/autoload.php';[/B] use Twilio\Rest\Client; $client = new Client($sid, $token); $text = urlencode($_GET["text"]); $NumberToCall = $_GET["number"]; $urltext = $TwiMLBinUrl . $text; $call = $client->calls->create( $NumberToCall, $YourNumber, array("url" => $urltext, "timeout" => $timeout) ); echo $call->sid;
root@loxberry:/opt/loxberry/webfrontend/legacy/callerservice# php7.4 makecall.php PHP Notice: Undefined index: text in /opt/loxberry/webfrontend/legacy/callerservice/makecall.php on line 17 Notice: Undefined index: text in /opt/loxberry/webfrontend/legacy/callerservice/makecall.php on line 17 PHP Notice: Undefined index: number in /opt/loxberry/webfrontend/legacy/callerservice/makecall.php on line 18 Notice: Undefined index: number in /opt/loxberry/webfrontend/legacy/callerservice/makecall.php on line 18 PHP Fatal error: Uncaught Twilio\Exceptions\RestException: [HTTP 400] Unable to create record: No 'To' number is specified in /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Version.php:85 Stack trace: #0 /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Version.php(207): Twilio\Version->exception() #1 /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Rest/Api/V2010/Account/CallList.php(79): Twilio\Version->create() #2 /opt/loxberry/webfrontend/legacy/callerservice/makecall.php(25): Twilio\Rest\Api\V2010\Account\CallList->create() #3 {main} thrown in /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Version.php on line 85 Fatal error: Uncaught Twilio\Exceptions\RestException: [HTTP 400] Unable to create record: No 'To' number is specified in /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Version.php:85 Stack trace: #0 /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Version.php(207): Twilio\Version->exception() #1 /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Rest/Api/V2010/Account/CallList.php(79): Twilio\Version->create() #2 /opt/loxberry/webfrontend/legacy/callerservice/makecall.php(25): Twilio\Rest\Api\V2010\Account\CallList->create() #3 {main} thrown in /opt/loxberry/webfrontend/legacy/callerservice/twilio-php-master/Twilio/Version.php on line 85
[Fri Apr 19 12:44:07.869976 2024] [php7:notice] [pid 823] [client 192.168.x.xx:xxxxx] PHP Notice: Undefined index: text in /opt/loxberry/webfrontend/legacy/callerservice/makecall.php on line 17 [Fri Apr 19 12:44:07.870052 2024] [php7:notice] [pid 823] [client 192.168.x.x:xxxxx] PHP Notice: Undefined index: number in /opt/loxberry/webfrontend/legacy/callerservice/makecall.php on line 18
Wir verarbeiten personenbezogene Daten über Nutzer unserer Website mithilfe von Cookies und anderen Technologien, um unsere Dienste bereitzustellen, Werbung zu personalisieren und Websiteaktivitäten zu analysieren. Wir können bestimmte Informationen über unsere Nutzer mit unseren Werbe- und Analysepartnern teilen. Weitere Einzelheiten finden Sie in unserer Datenschutzrichtlinie.
Wenn Sie unten auf "Einverstanden" klicken, stimmen Sie unserer Datenschutzrichtlinie und unseren Datenverarbeitungs- und Cookie-Praktiken wie dort beschrieben zu. Sie erkennen außerdem an, dass dieses Forum möglicherweise außerhalb Ihres Landes gehostet wird und Sie der Erhebung, Speicherung und Verarbeitung Ihrer Daten in dem Land, in dem dieses Forum gehostet wird, zustimmen.
Kommentar