-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathREADME
More file actions
22 lines (16 loc) · 750 Bytes
/
README
File metadata and controls
22 lines (16 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Objective-C library for adding entries to instapaper.com
Usage: copy instaPaperLib.m and instaPaperLib.h into your Classes folder and then #include "instaPaperLib.h"
you can call the library something like the example below
instaPaperLib *IPLib = [[instaPaperLib alloc] init];
BOOL response = [IPLib postToInstapaperWithUserName:@"username"
andPassword:@"password"
andBody:@"sample text snippit"
andURL:@"http://www.somesiteurl.com"
andTitle:@"Your post title"];
if(response){
//NSLog(@"Good status");
}
else{
//NSLog(@"Bad Status");
}
[IPLib release];