amazingsyco / mgtwitterengine forked from maddox/mgtwitterengine

Git fork of MGTwitterEngine

This URL has Read+Write access

name age message
file AppController.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file AppController.m Loading commit data...
directory English.lproj/ Tue Jan 20 16:07:48 -0800 2009 Code and documentation cleanup. Added many more... [craighockenberry]
file Info.plist Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterEngine.h
file MGTwitterEngine.m
directory MGTwitterEngine.xcodeproj/ Tue Jan 20 17:08:50 -0800 2009 Removed a stray .plist file. git-svn-id: http:... [craighockenberry]
file MGTwitterEngineDelegate.h
file MGTwitterEngineGlobalHeader.h
file MGTwitterEngine_Prefix.pch Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterHTTPURLConnection.h
file MGTwitterHTTPURLConnection.m
file MGTwitterLibXMLParser.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterLibXMLParser.m Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterMessagesLibXMLParser.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterMessagesLibXMLParser.m
file MGTwitterMessagesParser.h
file MGTwitterMessagesParser.m
file MGTwitterMessagesYAJLParser.h Mon Jan 19 17:08:46 -0800 2009 Finished parsing code with YAJL: status, messag... [craighockenberry]
file MGTwitterMessagesYAJLParser.m
file MGTwitterMiscLibXMLParser.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterMiscLibXMLParser.m Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterMiscParser.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterMiscParser.m Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterMiscYAJLParser.h
file MGTwitterMiscYAJLParser.m
file MGTwitterParserDelegate.h
file MGTwitterRequestTypes.h
file MGTwitterSearchYAJLParser.h Tue Jan 20 13:13:36 -0800 2009 Changed layout of main header file to match Twi... [craighockenberry]
file MGTwitterSearchYAJLParser.m
file MGTwitterStatusesLibXMLParser.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterStatusesLibXMLParser.m
file MGTwitterStatusesParser.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterStatusesParser.m Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterStatusesYAJLParser.h Fri Jan 16 16:52:45 -0800 2009 First pass at adding JSON support with YAJL. g... [craighockenberry]
file MGTwitterStatusesYAJLParser.m
file MGTwitterUsersLibXMLParser.h
file MGTwitterUsersLibXMLParser.m Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterUsersParser.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file MGTwitterUsersParser.m
file MGTwitterUsersYAJLParser.h Mon Jan 19 17:08:46 -0800 2009 Finished parsing code with YAJL: status, messag... [craighockenberry]
file MGTwitterUsersYAJLParser.m
file MGTwitterXMLParser.h
file MGTwitterXMLParser.m
file MGTwitterYAJLParser.h
file MGTwitterYAJLParser.m
file NSData+Base64.h Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file NSData+Base64.m
file NSString+UUID.h
file NSString+UUID.m Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file README.txt Wed Oct 01 09:27:40 -0700 2008 We now no longer obfuscate the fact that this c... [mattgemmell]
file Source Code License.rtf Sat Aug 09 15:05:47 -0700 2008 MGTwitterEngine re-import. git-svn-id: http://... [mattgemmell]
file TODO
file main.m
README.txt
MGTwitterEngine
by Matt Legend Gemmell - http://mattgemmell.com



How to use MGTwitterEngine
==========================

MGTwitterEngine is an Objective-C/Cocoa class which makes it easy to add Twitter integration to your own Cocoa apps. It 
communicates with Twitter via the public Twitter API, which you can read about here:
http://apiwiki.twitter.com/REST+API+Documentation

Using MGTwitterEngine is easy. The basic steps are:


1. Copy all the relevant source files into your own project. You need everything that starts with "MGTwitter", and also 
the NSString+UUID and NSData+Base64 category files.


2. In whatever class you're going to use MGTwitterEngine from, obviously make sure you #import the MGTwitterEngine.h 
header file. You should also declare that your class implements the MGTwitterEngineDelegate protocol. The 
AppController.h header file in the demo project is an example you can use.


3. Implement the MGTwitterEngineDelegate methods, just as the AppController in the demo project does. These are the 
methods you'll need to implement:

- (void)requestSucceeded:(NSString *)requestIdentifier;
- (void)requestFailed:(NSString *)requestIdentifier withError:(NSError *)error;
- (void)statusesReceived:(NSArray *)statuses forRequest:(NSString *)identifier;
- (void)directMessagesReceived:(NSArray *)messages forRequest:(NSString *)identifier;
- (void)userInfoReceived:(NSArray *)userInfo forRequest:(NSString *)identifier;


4. Go ahead and use MGTwitterEngine! Just instantiate the object and set the relevant username and password (as 
AppController does in the demo project), and then go ahead and call some of the Twitter API methods - you can see a full 
list of them in the MGTwitterEngine.h header file, which also includes a link to the Twitter API documentation online.


A note about XML parsing
========================

You may wish to use the LibXML parser rather than the NSXMLParser, since LibXML can be faster and has a smaller memory 
footprint.

In this case, you make need to make the following changes to your project:

1. Set USE_LIBXML to 1, near the top of the MGTwitterEngine.m file.

2. Add libxml2.dylib in Other Frameworks. You'll find the library in:

  /usr/lib/libxml2.dylib
  
3. Add "/usr/include/libxml2" as a Header Search Path in your Project Settings.



A note about using MGTwitterEngine on the iPhone
================================================

MGTwitterEngine can also be used on the iPhone (with the official iPhone SDK). Simply add it to your iPhone application 
project as usual.

It's recommended that you use the LibXML parser rather than the NSXMLParser on the iPhone. The native parser is faster 
and has a smaller memory footprint, and every little bit counts on the device. If you configure USE_LIBXML to 1 in 
MGTwitterEngine.m, you'll need to make a couple of additions to your project.

1. Add libxml2.dylib in Other Frameworks. You'll find the library in:

  /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS2.0.sdk/usr/lib/libxml2.dylib
  
2. Add "$SDKROOT/usr/include/libxml2" as a Header Search Path in your Project Settings.



A note about the data returned from Twitter
===========================================

Each Twitter API method returns an NSString which is a unique identifier for that connection. Those identifiers are 
passed to all the delegate methods, so you can keep track of what's happening.

Whenever a request is successful, you will receive a call to your implementation of requestSucceeded: so you'll know 
that everything went OK. For most of the API methods, you will then receive a call to the appropriate method for the 
type of data you requested (statusesReceived:... or directMessagesReceived:... or userInfoReceived:...). The values sent 
to these methods are all NSArrays containing an NSDictionary for each status or user or direct message, with 
sub-dictionaries if necessary (for example, the timeline methods usually return statuses, each of which has a 
sub-dictionary giving information about the user who posted that status).

Just try calling some of the methods and use NSLog() to see what data you get back; you should find the format very easy 
to integrate into your applications.

Sometimes, of course, requests will fail - that's just how life is. In the unlikely event that the initial connection 
for a request can't be made, you will simply get nil back instead of a connection identifier, and then receive no 
further calls relating to that request. If you get nil back instead of an NSString, the connection has failed entirely. 
That's a good time to check that the computer is connected to the internet, and so on.

It's far more common however that the connection itself will go ahead just fine, but there will be an error on Twitter's 
side, either due to technical difficulties, or because there was something wrong with your request (e.g. you entered the 
wrong username and password, or you tried to get info on a user that doesn't exist, or some such thing). The specific 
error conditions are mostly documented in the Twitter API documentation online.

In these cases you'll receive a call to requestFailed:withError: which will include an NSError object detailing the 
error. Twitter usually returns meaningful HTTP error codes (like 404 for 'user not found', etc), and in that case the 
-domain of the NSError will be "HTTP" and the -code will be the relevant HTTP status code. This makes it really, really 
easy to know what's happening with your connections.



About twitter.com cookies
=========================

Like most web sites/services, twitter.com sets cookies on your computer when you authenticate with their server. These 
cookies (stored in NSHTTPCookieStorage) are shared amongst all applications which use NSURLConnection (including Safari 
and many more).

MGTwitterEngine does not use those cookies, since it does its own direct authentication in the URLs of the requests it 
makes to the twitter servers. For this reason, as of version 1.0.4 (11th April 2008), it does not attempt to clear any 
saved cookies for twitter.com when you set a username and password for MGTwitterEngine to use. However, previous 
versions of MGTwitterEngine did indeed clear twitter's cookies whenever you called the -setUsername:password: method, in 
order to avoid an old and now fixed possibility of using the wrong credentials for the next request. There are two 
outcomes from this:

1. MGTwitterEngine no longer clears your twitter.com cookies, so for example you will now no longer have to re-login to 
Twitter in Safari after using an app which includes MGTwitterEngine. You would usually only have had to re-login with 
Safari once, but it was still an annoyance if you regularly used Twitter both on the web and with an 
MGTwitterEngine-using client. This should be fixed now.

2. In the unlikely event that you have any authentication problems when your MGTwitterEngine-using app switches from one 
Twitter account to another (for example, after switching accounts you still get data back from the old account, at least 
for the very first new request), you can easily re-enable the old cookie-clearing behaviour. Simply call the method 
-setClearsCookies: passing YES as the argument, and then call -setUsername:password: again, and all should be well.



About supplying a custom name and other information for your Twitter client
===========================================================================

The client name, url and version information supplied to -setClientName:version:URL:token: is used only for tracking 
purposes at Twitter; it is not displayed on the website. In order to have a custom name shown for your client when it 
sends updates to Twitter (e.g. "from MyCoolApp"), you must first contact Twitter and agree on a special identifier which 
you will send whenever you post an update - this is the 'token' parameter to the previously mentioned method.

You can request such a token using this form at twitter.com:

http://twitter.com/help/request_source

When you receive your token, you can then set that token value using the aforementioned method, and MGTwitterEngine will 
do the right thing.



That's about it. If you have trouble with the code, or want to make a feature request or report a bug (or even 
contribute some improvements), you can get in touch with me using the info below. I hope you enjoy using 
MGTwitterEngine!


Cheers,
-Matt Legend Gemmell


Web:      http://mattgemmell.com
AIM:      MadMcProgrammer
MSN:      mulderuk@hotmail.com
Twitter:  mattgemmell

P.S. If you'd like to hire me for your own Mac OS X (Cocoa) or iPhone / iPod Touch development project, take a look at 
my consulting site at http://instinctivecode.com :)