This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class twitterConsole { | |
// This Class handles sending requests to Twitter's API without user authentication (See example at the end of the file) | |
private $twitterKey = 'ENTER_YOUR_KEY'; | |
private $twitterSecret = 'ENTER_YOUR_SECRET'; | |
private $keyConcatination =''; // Will be generated while constructing the class (See Below) | |
private $token = ''; // Will be generated while constructing the class (See Below) | |
public function __construct() { |