我正在尝试将帖子发送到我的Twitter帐户。
因此,我正在尝试着名的https://github.com/abraham/twitteroauth
脚本。
我的文件夹结构是:
www.mysite.com/twitterbot/
|-- twitteroauth (folder)
| |-- Util (folder)
| | `-- JsonDecoder.php
| |-- autoload.php
| |-- Config.php
| |-- Consumer.php
| |-- HmacSha1.php
| |-- Request.php
| |-- Response.php
| |-- SignatureMethod.php
| |-- Token.php
| |-- TwitterOAuth.php
| |-- TwitterOAuthException.php
| `-- Util.php
`-- index.php
我的index.php
<?php
require "twitteroauth/autoload.php";
use Abraham\TwitterOAuth\TwitterOAuth;
$consumerKey = "myconsumerkey"; // Consumer Key
$consumerSecret = "mycinsumersecret"; // Consumer Secret
$accessToken = "myaccesstoken"; // Access Token
$accessTokenSecret = "my access token secret"; // Access Token Secret
$connection = new TwitterOAuth($consumerKey, $consumerSecret, $accessToken, $accessTokenSecret);
$statues = $connection->post("statuses/update", array("status" => "I'm posting a tweet!"));
?>
当我访问www.mysite.com/twitterbot/
时,请说**Fatal error**: Class 'Abraham\TwitterOAuth\TwitterOAuth' not found in mysitecom/twitterbot/index.php on line 8
第8行是$statues = $connection->post("statuses/update", array("status" => "I'm posting a tweet!"));
我做错了什么? 我该如何解决这个问题?