-
Notifications
You must be signed in to change notification settings - Fork 2
Objective-C library for use to post entries to instapaper.com
License
vkoser/instaPaperLib
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
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];
About
Objective-C library for use to post entries to instapaper.com
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published