Jump to Navigation

Me on Twitter

  • Agree https://t.co/aBM9iv8QvP 1 year 12 weeks ago
  • RT @fasc1nate: A termite track (top) and an ant track (bottom), each protected by its column of soldiers who face each other without attack… 1 year 22 weeks ago
  • RT @glazou: Bide total, à un point rarement atteint, de la conf NFT Londres. Dixit un participant : « la liste des spectateurs était égale… 1 year 23 weeks ago
  • RT @hugolisoir: 1 year 24 weeks ago
  • RT @petapixel: A photographer was tasked with capturing a graduation class photo, but with a twist; it had to be done underwater. https://t… 1 year 25 weeks ago
  • Behold the 1st images of DART's wild asteroid crash! | Space - https://t.co/f6CRep8JAz #NASA #dart #space I love that ! 1 year 28 weeks ago
  • La France, pays de la #liberté (de la #presse, d'expression)... A force de dériver on va finir par s'échouer 1 year 29 weeks ago
  • @agoncal @QuarkusIO @david_dewalle @loicmathieu no girl in #decathlon staff ? 1 year 29 weeks ago
  • @EnjoyDigitAll @tewoz @Siecledigital 1 year 32 weeks ago
  • I love https://t.co/zlI50waxK4 but https://t.co/M2JXDA690i is probably better for non-IT people. @zx2c4 #keepass 1 year 32 weeks ago

Displaying your tweets on your Drupal blog

Twitter module for Drupal

If you want to display your latest tweets on your Drupal blog, you will probably want to use the dedicated Twitter module. Among other features, this module provides a new block type that lists a selection of tweets from an account. Tweets are retrieved via a cron job and stored in your website's database, making them available even through corporate firewalls that banish twitter.com. Just-what-you-need !

There are a few catches however : it will likely not work if you are on a shared host because Twitter puts rate limits to the usage of their API, and there is a bug in the block view that can be circumvented.

Here are the important steps to configure the module for our needs :

  1. Install Twitter module and some dependencies : OAuthAutoload, Views
  2. Activate the modules Twitter, OAuth, Autoload, Views and Views UI (the other Twitter modules 'actions', 'post' and 'signin' are not required for our purpose)
  3. Setup the Twitter module as described in the documentation : you will need to register your application and fill in OAuth consumer secret and key
  4. Associate a Twitter account with your user (this is also described in the documentation). This creates a line in the twitter_account table and is mandatory for OAuth requests.
  5. Start cron to retrieve your tweets. If this step gives you a "rate limit exceeded" message, welcome to the club : go ahead and read the next chapter.
  6. Lastly, create the block view that you will include in your layout. You don't need to follow the documentation : simply clone the twitter view as you wish and remove the user:uid filter to make it work (looks like a bug). Change the "Admin" field to help you distinguish it from the default twitter block.

 

Use Twitter API on localhost

If you want to register your local site (from your local computer), you can use http://127.0.0.1/twitter/oauth as the callback URL in step 3.
 
And if your test site does not respond to 127.0.0.1 (but for instance to mysite.localhost), the callback will fail, but you will still get the URL with the right query parameters (e.g. http://127.0.0.1/twitter/oauth?oauth_token=LbcMx...LcR3d&oauth_verifier=trdf5...aaOjQ) in step 4 : you can then simply change the host in the URL and try it a second time !
 

Patching for use on a shared host

In order to fetch twitter statuses (your tweets), the Twitter module makes unauthenticated calls to the API by default, and therefore is subject to a rate limit of 150 requests per hour measured against the IP address of the server making the request.

On shared hosts many sites use the same front IP address and thus the rate limit is reached every hour. In short, the sites trying to use this feature make it impossible to use for any host on the same shared host...!

Twitter's API allows for more requests if you use authenticated calls : up to 350 requests per hour measured against a token that's unique to your Twitter account. This is largely enough for our needs as it does not rely on the IP address.

 

First option : set a field in the database

To choose whether or not using an authenticated call, the module will look at some point for the value of the field named "protected" attached to the user in Drupal's database (twitter_account table). If this field has value that converts to TRUE in PHP, tweets will be retrieved through authentified calls.

You can the set the field value to 1 with your preferred database query tool.

However, setting this field to TRUE also allows other users to create tweets on behalf of this account. Furthermore, it may be set back to 0 by some parts of the module we don't control.

 

Second option : patch a line of code

Looking at the code, it looked to me more adequate to patch the code of the module.

Simply look for the file named twitter.inc in the module's files, and replace the use of $account->protected with_twitter_use_oauth() in the $twitter->user_timeline(...) call of the twitter_fetch_user_timeline function.

There is only one line to change :

<?php
...
function twitter_fetch_user_timeline($id) {
...
//  $statuses = $twitter->user_timeline($account->id, $params, $account->protected);
  $statuses = $twitter->user_timeline($account->id, $params, _twitter_use_oauth());
...
?>

 

And here we go : a nice Twitter timeline fetched and displayed on a shared host !

Sample site tweets block

 

References

 

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • Web page addresses and e-mail addresses turn into links automatically.
  • E-Mail addresses are hidden with reCAPTCHA Mailhide.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • You can enable syntax highlighting of source code with the following tags: <code>, <blockcode>, <drupal5>, <drupal6>, <java>, <javascript>, <php>, <python>. The supported tag styles are: <foo>, [foo].
  • Twitter-style #hashtags are linked to search.twitter.com.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.