Skip to content

Instantly share code, notes, and snippets.

View TomLiu's full-sized avatar

Liu Yi TomLiu

View GitHub Profile
@TomLiu
TomLiu / testURLRequest.m
Created August 25, 2011 07:20
cocoa send request to Google Doc
NSString *postwords = @"test";
NSString *post = [NSString stringWithFormat:@"entry.0.single=%@&pageNumber=0&backupCache=&submit=Submit",postwords];
NSData *postData = [post dataUsingEncoding:NSUTF8StringEncoding allowLossyConversion:YES];
NSString *postLength = [NSString stringWithFormat:@"%d", [post length]];
NSMutableURLRequest *request = [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:@"https://docs.google.com/spreadsheet/formResponse?formkey=yourformkey;ifq"]];
[request setHTTPMethod:@"POST"];