Class not found PHP

2019-07-19 15:34发布

I used THIS twitter librabry and getting this error. Can anyone tell where i am going wrong ?

ERROR

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条回答
Ridiculous、
2楼-- · 2019-07-19 16:01

Could you check your vendor\abraham\twitteroauth\src :

Is there a Config.php ?

I encountered this problem causes by a .gitignore placed upper in the project. This one was containing a line config.php ... I changed it to \config.php to remove only the top config file and enable the file in abraham's library

查看更多
来,给爷笑一个
3楼-- · 2019-07-19 16:08

Are you sure that this is correct way? :

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

you could try:

require_once("Abraham/autoload.php"); 
require_once("Abraham/TwitterOAuth/TwitterOAuth.php"); 
use Abraham\TwitterOAuth\TwitterOAuth;
查看更多
Emotional °昔
4楼-- · 2019-07-19 16:26

TwitterOAuth uses the Config class - but it does not get loaded automatically. You could require this class - or use a classloader. The best approach would be using composer to manage your dependencies (which comes with a class loader).

查看更多
登录 后发表回答