Hi,
Still struggling with this… Part 1 is okay (I think):
1) Install the Twitter oAuth Feed for Developers plugin.
2) Follow step 1 from the guide here to create your Twitter APP, and get the required keys/tokens : http://www.webdevdoor.com/php/authenticating-twitter-feed-timeline-oauth/
3) Enter these keys/tokens in Settings > Twitter Feed Auth.
But dont understand the following:
You can then loop over the array and do whatever you want with it.
<?php
$tweets = getTweets($number_of_tweets, $twitter_screenname_to_load, $optional_array_of_any_additional_twitter_api_parameters);
var_dump($tweets);
foreach($tweets as $tweet){
var_dump($tweet);
}
?>
You can specify a number of tweets to return (up to 20) by passing a parameter to the function. For example, to display just the latest tweet you’d request getTweets(1)
The following default options are used unless you override them in the optional array of additional parameters.
Trim the user object (“trim_user” => true)
Exclude replies (“exclude_replies” => true)
Exclude retweets (“include_rts” => false)
Results are cached for 1 hour (by default) to help you avoid hitting the API limits.
Please explain what to do in order for the feed to work
Thanks!