monkehTweets is a ColdFusion Wrapper written to interact with the Twitter API. Full installation details (incredibly simple) are included within the /installation directory.
monkehTweets has been compatible with Twitter's v1.1 API since October 2012 (well in advance of the change in May 2013)
Developed by Matt Gifford (aka coldfumonkeh)
Got a lot out of this package? Saved you time and money?
Share the love and visit Matt's wishlist: http://www.amazon.co.uk/wishlist/B9PFNDZNH4PY
monkehTweets requires ColdFusion 8+
The package has been tested against:
- Adobe ColdFusion 9
- Adobe ColdFusion 10
- Railo 4
- Railo 4.1
- Railo 4.2
- Lucee 4.5
- Lucee 5
Project home: http://monkehTweet.riaforge.org
This CF wrapper can be installed as standalone or as a ColdBox Module. Either approach requires a simple CommandBox command:
box install monkehtweet
Then follow either the standalone or module instructions below.
This wrapper will be installed into a directory called monkehTweet
and then can be instantiated via new monkehTweet.com.coldfumonkeh.monkehTweet()
with the following constructor arguments:
consumerKey = '',
consumerSecret = '',
oauthToken = '',
oauthTokenSecret = '',
userAccountName = '',
parseResults = true
This package also is a ColdBox module as well. The module can be configured by creating a monkehTweet
configuration structure in your application configuration file: config/Coldbox.cfc
with the following settings:
monkehTweet = {
consumerKey = '',
consumerSecret = '',
oauthToken = '',
oauthTokenSecret = '',
userAccountName = '',
parseResults = true,
};
Then you can inject the CFC via Wirebox:
property name="monkehTweet" inject="monkehTweet@MonkehTweet";
One of the questions received in regards to monkehTweets is how to manage authentication for multiple users. You can find the answer right here: