Banner for Oauth Twitter Feed For Developers
Twitter API 1.1 compliant plugin that provides a function to get an array of tweets from the auth'd users Twitter feed for use in themes. Wordpress Tutorial
Noted That:
  • To install correctly this oauth-twitter-feed-for-developers.zip .
  • Fisrt Download the oauth-twitter-feed-for-developers.zip to your computer
  • Extract/Open oauth-twitter-feed-for-developers.zip to Your Computer.
  • Then, Find readme.txt file inside oauth-twitter-feed-for-developers.zip and Open readme.txt .
  • Now, Read the Requirements of this plugin. Which Wordpress Version and PHP Version are required to run this Plugin in Your Wordpress Site.
  • Then, Follow the Tips Below.
Start the Tips:

Step-1 : Download " oauth-twitter-feed-for-developers.zip " to Your Local Computer.

Step-2 : Then, Login to your " yourdomain.com/wp-admin " Dashboard.

Login to Wordpress Oauth Twitter Feed For Developers

Step-3 : Then, Click on " Plugins " + " Add New " from left Side Menu of Dashboard.

Go to Plugin Install Oauth Twitter Feed For Developers

Step-4 : Now, Click on " Upload Plugin " button.

Click Upload Button Oauth Twitter Feed For Developers

Step-5 : Now, Browse " oauth-twitter-feed-for-developers.zip " Downloaded plugin from your computer, Where you downloaded " oauth-twitter-feed-for-developers.zip " According to Step – 1 Above then, click on " Install Now "

Upload Plugin Oauth Twitter Feed For Developers

Step-6 : Now, Click on " Active Plugin "

Activate Oauth Twitter Feed For Developers

Step-7 : Then, See left Side Menu. " Oauth Twitter Feed For Developers " folder is added on left Side Menu. Now, Click on " Oauth Twitter Feed For Developers " folder.

Noted that: If you do not see " Oauth Twitter Feed For Developers " folder on left Side Menu then, see at left Side Menu " Settings " or " Tools ".

Step-8 : Now you configure yourself oR Watch video tutorial below about Oauth Twitter Feed For Developers Configurations and Settings or How to work " Oauth Twitter Feed For Developers " in your WordPress site.

oR

After Activated Plugin According to Step-6 then,

  1. Go to " Plugins " + " Installed Plugin " from Wordpress Admin Panel Leftside Menu.
  2. or Direct go to: https://yourdomain/wp-admin/plugins.php
  3. Then, Find " oAuth Twitter Feed for Developers " Activated Plugin from Plugin List.
  4. Then, Click on " Settings " from Plugin that is oAuth Twitter Feed for Developers
  5. Now, Edit/Add/Config the setting and Click on " Save Changes " button,
WP Plugin Setting



Guide

Install the plugin using the plugin manager, or upload the files to your wp-content/plugins directory.

Navigate to the Settings > Twitter Feed Auth.

Here you’ll find settings fields to authenticate with Twitter. You’ll need to create a new Application on http://dev.twitter.com/apps.

Once you’ve create the app, scroll down the app’s details page to find the oAuth section. Copy the consumer secret and consumer key into the settings page for the plugin. Then click the Create Access Token button at the bottom of the Twitter app page. Copy the Access token and Access token secret into the plugin’s settings page. Finally, enter the Twitter username of the feed you want to access. Save the settings.

Now, anywhere in your theme files you can call the getTweets() function to retrieve an array of tweets.

You can then loop over the array and do whatever you want with it.


 

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.


Name