Matt Gifford aka coldfumonkeh | Consultant Developer
View Github Profile


monkehTweet release and Twitter update_with_media enhancements

Nov 22, 2011

This morning I pushed out the latest release of monkehTweet, the open-source ColdFusion wrapper to interact with the Twitter API.

There are a number of revisions, enhancements and changes to the code and the service layer.

Firstly, and very important for anyone using the older versions of the package - I went through the Twitter documentation to check and update all available methods and add additional / new parameters to the code. Whilst doing so, I changed some of the argument names to fall in line with the official Twitter names to make it easier for me to maintain and update future releases.

As a result, PLEASE make sure you check your use of parameter names in any methods you are calling with the actual names of the arguments available to avoid any possibility of disruption or errors. Only a few methods have had some arguments changed this way, but I'd still recommend just checking your code to make sure. As said, this will greatly improve future update times and revisions.

Update with Media

The biggest addition to the project is probably the inclusion of the new update\_with\_media function from Twitter, which allows you to post one image (either a gif, jpeg or png) with the status update. This took some considerable thinking, plenty of coffee and a little refactoring of code to put in to place, but it's finally there.

In terms of use, it's incredibly simple. The two required parameters are the status and the media file to upload and include alongside the status. The media file itself is the full path of the file on the server.

Let's have a look at the example below:

objMonkehTweet	=	new com.coldfumonkeh.monkehTweet(
	consumerKey			=	'< your consumer key >',
	consumerSecret		=	'< your consumer secret >',
	oauthToken			=	'< your oauth token >',
	oauthTokenSecret	=	'< your oauth token secret >',
	userAccountName		=	'< your account name >'
);

objMonkehTweet.postUpdate(
	status="@iotashan - the new release has something you've been waiting for..
			yes, the longest 24 hours in the world, ever, is finally over!",
	in\_reply\_to\_status\_id='134657766970228736'
);

Here we have a simple status update, in reply to a particular status from a follower.

The actual status generated from this call be seen here: http://twitter.com/#!/coldfumonkeh/statuses/138930784303194112

The update\_with\_media function (or __postUpdateWithMedia__ as it's called in monkehTweet) is incredibly similar.

objMonkehTweet	=	new com.coldfumonkeh.monkehTweet(
	consumerKey			=	'< your consumer key >',
	consumerSecret		=	'< your consumer secret >',
	oauthToken			=	'< your oauth token >',
	oauthTokenSecret	=	'< your oauth token secret >',
	userAccountName		=	'< your account name >'
);

// Include the media parameter (full path to file)

objMonkehTweet.postUpdateWithMedia(
	status='@refyner FYI the new ##monkehTweet release has some
		minor changes to some argument names. ##ColdFusion',
	media="/Applications/ColdFusion9/wwwroot/monkehTweet/test/code.png",
	in\_reply\_to\_status\_id='135070647205380096'
);

The status generated from this call with the attached media file can be seen here: http://twitter.com/coldfumonkeh/statuses/138945147168763904

The single media argument points to the full path of the image file on the server. monkehTweet handles the full upload and authentication procedure in much the same way as it does with every other request through the API.

Under the hood quite a lot more is happening that the user is not aware of. The postUpdateWithMedia method needs to handle the OAuth authentication and header generation slightly differently to all of the other requests within the API. The call to this method is handled through a POST request that needs to go through a multipart/form-data submission, sending the image file in binary, as well as any of the other arguments (status is a required field, so will always be sent in the request).

As the request was being sent in this manner, the OAuth signature needed to be redefined for this method only to just include the oauth_* specific parameters. This was the biggest headache to refactor, but once it was working was incredibly easy.

At present, Twitter only accepts JPG, GIF and PNG files for upload. To assist in ensuring the correct file type has been submitted, the monkehTweet package will check the mimetype of the supplied file, and will only proceed if it matches one of the approved file types. This has been included thanks to the open source project http://magicmime.riaforge.org/ from Paul Connell.

One think to note is that the link generated by Twitter to the upload media file forms part of the 140 character limitation on the overall status. To quote the official documentation for this method:

The Tweet text will be rewritten to include the media URL(s), which will reduce the number of characters allowed in the Tweet text. If the URL(s) cannot be appended without text truncation, the tweet will be rejected and this method will return an HTTP 403 error.

So, if uploading an image, keep an eye on the length of the text within the status to ensure you don't go over the limit.

Help is at hand

Some more inclusions into this release are the three help methods from Twitter:

  • test
  • configuration
  • languages

Test simply runs a basic call to the API to return a response - very useful for determining the current system status. Languages will provide you with details of the ISO language references that you can then use in certain calls.

The configuration function is incredibly useful for the media uploads. The returned data contains information on the maximum number of media allowed per upload (currently set to one), the size limit of the uploaded image file (very useful to determine if an image SHOULD be uploaded by checking the size), as well as photo size dimensions, URL length as well as some other information.

Grab a copy!

The updated version (v1.3.0) of monkehTweet is available now to download from monkehtweet.riaforge.org or from the github repository here: https://github.com/coldfumonkeh/monkehTweets.


Latest Blog Posts

Jul 16, 2020
Github Actions with CommandBox and TestBox
Read More
Jul 9, 2020
Azure pipelines with CommandBox and TestBox
Read More
Dec 23, 2019
CFML content moderation detection component library
Read More