How do I get my Twitter.com Application Keys?
Firstly, log into Twitter.com and go to http://www.twitter.com/apps.
Click ‘Register a new application’ and enter in the details required. Please note that the Application type needs to be set to Browser, Default access type needs to be set to read and write, and Use Twitter for login needs to be ticked.
Once you have registered your Twitter application, it will display your Consumer Key, and Consumer Secret Key. These need to be copied and pasted into ./twitteroauth/config.php. This file should now look like:
define('CONSUMER_KEY', 'YOUR_KEY_GOES_HERE');
define('CONSUMER_SECRET', ''YOUR_KEY_GOES_HERE);
Save this file and run your script.
