定义 Twilio 服务目录的正确路径

问题描述 投票:0回答:1

我无法使用composer来安装twilio-php库,所以我手动安装它。 作为一个 nubie,我对如何启动一个新服务感到非常困惑...注意第一个 require 语句,它指向 Services/Twilio 目录。 下载 Twilio-Php 库后,没有名为 Services 的目录。 此外,$client= 新的 Services Twilio 也需要正确的路径。 我该怎么办,求助?

<?php 
   require("Services/Twilio.php"); 
   require("database.php"); 

   // initiate phone call via Twilio REST API     
   // Set our AccountSid and AuthToken  
   $AccountSid = "ACxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; 
   $AuthToken = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"; 

   // Instantiate a new Twilio Rest Client  
   $client = new Services_Twilio($AccountSid, $AuthToken); 
twilio twilio-php
1个回答
0
投票

最新安装说明显示以下内容:

 <?php
    // Require the bundled autoload file - the path may need to change
    // based on where you downloaded and unzipped the SDK
    require __DIR__ . '/twilio-php-master/Twilio/autoload.php';

您将库解压到哪个目录中?

© www.soinside.com 2019 - 2024. All rights reserved.