I need to post on the wall of linkedIn from my iphone application.
For that i am downloading the code from the source.
In this For the posting on the wall code is
- (RDLinkedInConnectionID *)updateStatus:(NSString *)newStatus {
NSURL* url = [NSURL URLWithString:[kAPIBaseURL stringByAppendingString:@"/v1/people/~/current-status"]];
newStatus = [newStatus length] > kRDLinkedInMaxStatusLength ? [newStatus substringToIndex:kRDLinkedInMaxStatusLength] : newStatus;
NSData* body = [RDLinkedInRequestBuilder buildSimpleRequestWithRootNode:@"current-status" content:newStatus];
return [self sendAPIRequestWithURL:url HTTPMethod:@"PUT" body:body];
}
this is code for posting only current status but i need to post title,description and url like facebook.
How can i done this,can any one please help me.