Update: 2026-06-11 18:22:57
This commit is contained in:
18
walletintaleq.intaleq.xyz/v2/main/otpmessage.php
Executable file
18
walletintaleq.intaleq.xyz/v2/main/otpmessage.php
Executable file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
// Update the path below to your autoload.php,
|
||||
// see https://getcomposer.org/doc/01-basic-usage.md
|
||||
require_once '/path/to/vendor/autoload.php';
|
||||
|
||||
use Twilio\Rest\Client;
|
||||
|
||||
// Find your Account SID and Auth Token at twilio.com/console
|
||||
// and set the environment variables. See http://twil.io/secure
|
||||
$sid = getenv("TWILIO_ACCOUNT_SID");
|
||||
$token = getenv("TWILIO_AUTH_TOKEN");
|
||||
$twilio = new Client($sid, $token);
|
||||
|
||||
$service = $twilio->verify->v2->services
|
||||
->create("My Verify Service");
|
||||
|
||||
print($service->sid);
|
||||
Reference in New Issue
Block a user