我在网站上建议包括TwitterOAuth库
这是我的composer.json
{
"require": {
"opentok/opentok": "2.2.x",
"abraham/twitteroauth": "0.6.*",
"facebook/php-sdk-v4" : "4.0.*"
}
}
在codeigniter中的index.php文件中我有这些行
require_once './vendor/autoload.php';
use Abraham\TwitterOAuth\TwitterOAuth;
我的Facebook库加载正常,一切正常,与作曲家
中包含的其他内容一样
然而在我的控制器中,当我尝试使用此
发布时
function post()
{
try {
$to = new TwitterOAuth('key', 'secret', 'auth_token', 'auth_token_secret');
$params = array('status' => 'Trial Post');
$do_dm = simplexml_load_string($to->OAuthRequest('http://twitter.com/statuses/update.xml', $params, 'POST'));
}
catch(Exception $o ){
print_r($o);
}
}
我收到类'TwitterOAuth'找不到的错误
我一直在挖掘一段时间而且不知道这是怎么回事..任何人都可以帮忙吗?