forked from ericjohnson/twitter-xauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME
27 lines (22 loc) · 1.08 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
twitter-xauth
-------------
This is an extremely simple twitter client for Mac OS X and iOS, which
uses xauth for authentication. The only other feature provided are
status updates. I created this project because I wanted something
small and simple, and need only to be able to do status updates on
twitter. I'm posting it in hopes that it might be of use to someone
else.
See twitter-xauth.m for example usage. Fill in values for
CONSUMER_KEY, CONSUMER_SECRET, TWITTER_USERNAME, and
TWITTER_PASSWORD. Compiles on Mac OS X using gnu make.
This code is possible thanks to documentation and code examples found
on the following websites:
http://weblog.bluedonkey.org/?p=959
http://cocoawithlove.com/2009/06/base64-encoding-options-on-mac-and.html
http://www.getsharekit.com/
http://www.gigliwood.com/weblog/Cocoa/Q__When_is_an_conne.html
http://dev.twitter.com/pages/xauth
http://dev.twitter.com/doc/post/oauth/access_token
http://dev.twitter.com/pages/auth#auth-request
Special thanks to Matt Gallagher of cocoawithlove.com for providing an
Objective-C implementation of Base64 encoding for Mac and iPhone.