找不到PHP类

时间:2015-02-07 19:20:54

标签: php class twitter directory twitter-oauth

我使用THIS twitter librabry并收到此错误。谁能告诉我哪里出错?

错误

Fatal error: Class 'Abraham\TwitterOAuth\Config' not found in D:\wamp\www\Abraham\TwitterOAuth\TwitterOAuth.php on line 17

PHP

<?php

require_once("Abraham/TwitterOAuth/TwitterOAuth.php"); //Path to twitteroauth library you downloaded in step 3

//keys and tokens initialised


function getConnectionWithAccessToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret) {
  $connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);
  return $connection;
}

$connection = getConnectionWithAccessToken($consumerkey, $consumersecret, $accesstoken, $accesstokensecret);

$tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=".$twitteruser."&count=".$notweets);

echo json_encode($tweets);
echo $tweets; //testing remove for production   
?>

3 个答案:

答案 0 :(得分:6)

你确定这是正确的方法吗? :

require_once("Abraham/TwitterOAuth/TwitterOAuth.php");

你可以尝试:

require_once("Abraham/autoload.php"); 
require_once("Abraham/TwitterOAuth/TwitterOAuth.php"); 
use Abraham\TwitterOAuth\TwitterOAuth;

答案 1 :(得分:0)

TwitterOAuth使用Config类 - 但它不会自动加载。你可以require这个类 - 或者使用类加载器。最好的方法是使用composer来管理依赖项(它带有类加载器)。

答案 2 :(得分:0)

你能检查一下吗? vendor\abraham\twitteroauth\src

是否有Config.php

我遇到了这个问题,原因是项目中放置了.gitignore。这个包含一行config.php ... 我将其更改为\config.php以仅删除顶部配置文件并在亚伯拉罕的库中启用该文件