TwitterOAuth.php不会运行'使用'

时间:2015-08-02 16:29:21

标签: php oauth twitter-oauth php-5.6

错误是:

  

解析错误:语法错误,第9行/Applications/MAMP/htdocs/wp-content/plugins/plugin-name/includes/display-functions.php中的意外“使用”(T_USE)

require_once "twitteroauth/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth;    //<--this is line 9 where the error occurs

$consumerkey = '***************';
$consumersecret = '*********************************************';
$accesstoken = '*********************************************';
$accesstokensecret = '******************************';

$connection = new TwitterOAuth($consumerkey, $consumersecret ,$accesstoken, $accesstokensecret);
$statues = $connection->get("statuses/home_timeline", array("count" => 25, "exclude_replies" => true));

非常感谢任何帮助。

1 个答案:

答案 0 :(得分:0)

我偶然发现了这一点。

我无法弄清楚为什么它不起作用,但是设法解决了一个简单的解决方法。

这是工作代码:

require_once "twitteroauth/autoload.php";
//use Abraham\TwitterOAuth\TwitterOAuth;    //<--this is line 9 where the error occurs

$consumerkey = '***************';
$consumersecret = '*********************************************';
$accesstoken = '*********************************************';
$accesstokensecret = '******************************';

$connection = new Abraham\TwitterOAuth\TwitterOAuth($consumerkey, $consumersecret ,$accesstoken, $accesstokensecret);

希望对任何人都有帮助。