All Projects → coldfumonkeh → monkehTweets

coldfumonkeh / monkehTweets

Licence: other
A ColdFusion wrapper to interact with the Twitter API (with OAuth integration)

Programming Languages

HTML
75241 projects
ColdFusion
112 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects
shell
77523 projects

Projects that are alternatives of or similar to monkehTweets

twittered
Twitter API client for Java developers
Stars: ✭ 170 (+226.92%)
Mutual labels:  twitter-api
rtweet.download
{rtweet} helpers for automating large or time-consuming downloads
Stars: ✭ 24 (-53.85%)
Mutual labels:  twitter-api
bird-elephant
PHP client library for Twitter API v2 endpoints.
Stars: ✭ 28 (-46.15%)
Mutual labels:  twitter-api
bitparrot
An app I created so developers can track the info they need: now includes Twitter API feeds and Machine Learning, Python, and Ruby on Rails sections.
Stars: ✭ 22 (-57.69%)
Mutual labels:  twitter-api
twitter-most-followed-scripts
Scripts to find the most commonly followed Twitter accounts by a group of people
Stars: ✭ 25 (-51.92%)
Mutual labels:  twitter-api
dtwitter
Script used in the DTwitter shortcut, currently available on RoutineHub
Stars: ✭ 26 (-50%)
Mutual labels:  twitter-api
2017-year-in-review
Year in Review with R Rmd Template
Stars: ✭ 34 (-34.62%)
Mutual labels:  twitter-api
shut-up-bird
🐦 Put your tweets/likes in an EPUB and delete them like a boss
Stars: ✭ 22 (-57.69%)
Mutual labels:  twitter-api
Raymo111
My awesome profile README
Stars: ✭ 110 (+111.54%)
Mutual labels:  twitter-api
labs-sample-code
Sample code for Twitter Developer Labs
Stars: ✭ 25 (-51.92%)
Mutual labels:  twitter-api
gotwi
A library for using the Twitter API v2 in the Go language. (It is still under development).
Stars: ✭ 32 (-38.46%)
Mutual labels:  twitter-api
gotwtr
gotwtr provides Twitter v2 API
Stars: ✭ 45 (-13.46%)
Mutual labels:  twitter-api
core
FarCry Core: a web app framework for the ColdFusion language (supporting Lucee & Adobe ColdFusion engines). An ideal platform for building bespoke or tailor made solutions.
Stars: ✭ 34 (-34.62%)
Mutual labels:  coldfusion
twauth-web
A simple Python Flask web app that demonstrates the flow of obtaining a Twitter user OAuth access token
Stars: ✭ 65 (+25%)
Mutual labels:  twitter-api
twitter-flood-generator
Simple Command Line Utility for Generating Twitter Floods
Stars: ✭ 61 (+17.31%)
Mutual labels:  twitter-api
twitter-digest
✉️ A netlify lambda function that emails you tweets from a twitter list.
Stars: ✭ 14 (-73.08%)
Mutual labels:  twitter-api
Yatcobot
Yatcobot (Yet another twitter contest bot) is the most advanced and configurable bot for twitter contests and giveaways
Stars: ✭ 60 (+15.38%)
Mutual labels:  twitter-api
mcafee2cash
A crypto trading bot powered by McAfee tweets
Stars: ✭ 38 (-26.92%)
Mutual labels:  twitter-api
nicar tworkshop
Slides for #NICAR18 workshop on collecting and analyzing Twitter data
Stars: ✭ 23 (-55.77%)
Mutual labels:  twitter-api
GraphiPy
GraphiPy: Universal Social Data Extractor
Stars: ✭ 61 (+17.31%)
Mutual labels:  twitter-api

Build Status

monkehTweets ColdFusion Twitter API


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)

Authors

Developed by Matt Gifford (aka coldfumonkeh)

Share the love

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


Requirements

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

CommandBox Compatible

Installation

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.

Standalone

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

ColdBox Module

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";

Useful Links

One of the questions received in regards to monkehTweets is how to manage authentication for multiple users. You can find the answer right here:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].