を返す「を使用」は、このエラーを返します:TwilioのPHP私はTwilioと私のプロジェクトのためのトークンジェネレータを作成しようとしていますエラー、予期しないT_STRING
Parse error: syntax error, unexpected T_STRING, expecting T_CONSTANT_ENCAPSED_STRING or '(' in file dir on line 8
8行目はそれでuse Twilio\Rest\Client;
を持っています。私はPHP Twilio SDKをインストールしましたが、これは私の唯一のエラーです。
問題点は、このSDKのほとんどすべてのファイルにuse ...
という言い回しがあることです。これが正しく機能するために私が何をしていますか?
マイファイルVTC.php
は、次の操作を行います。
<?php
// Required if your environment does not handle autoloading
require __DIR__ . '/vendor/autoload.php';
// Use the REST API Client to make requests to the Twilio REST API
use Twilio\Rest\Client;
$id = $_GET['id'];
// Substitute your Twilio AccountSid and ApiKey details
$accountSid = 'xxx';
$apiKeySid = 'xxx';
$apiKeySecret = 'xxx';
// Create an Access Token
$token = new Services_Twilio_AccessToken(
$accountSid,
$apiKeySid,
$apiKeySecret,
$ttl=3600,
$identity='user'.$id
);
// Grant access to Conversations
$grant = new Services_Twilio_Auth_ConversationsGrant();
$grant->setConfigurationProfileSid('configurationProfileSid');
$token->addGrant($grant);
// Serialize the token as a JWT
echo $token->toJWT();
?>
私のサーバにはPHPがあります。5.2 –
PHP名前空間はPHP 5.3で導入されました。 PHP 5.2は公式に6年以上の終わりを迎えています。おそらくアップグレードを考えてください。 –