Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am able to post the comment to LinkedIn but not able to post the image. This is the code for posting the comment:

  NSURL *url = [NSURL URLWithString:@"http://api.linkedin.com/v1/people/~/shares"];

     OAMutableURLRequest *request = 
        [[OAMutableURLRequest alloc] initWithURL:url
                                        consumer:self.consumer
                                           token:self.accessToken
                                        callback:nil
                               signatureProvider:nil];

     NSString *postedStr = self.textView.text;

     NSDictionary *update = [[NSDictionary alloc] initWithObjectsAndKeys:
                                [[NSDictionary alloc] 
                                 initWithObjectsAndKeys:
                                 @"anyone",@"code",nil], @"visibility", 
                                postedStr, @"comment", nil];

        [request setValue:@"application/json" forHTTPHeaderField:@"Content-Type"];
        NSString *updateString = [update JSONString];

        [request setHTTPBodyWithString:updateString];
        [request setHTTPMethod:@"POST"];

        OADataFetcher *fetcher = [[OADataFetcher alloc] init];
        [fetcher fetchDataWithRequest:request
                             delegate:self
                    didFinishSelector:@selector(postUpdateApiCallResult:didFinish:)
                      didFailSelector:@selector(postUpdateApiCallResult:didFail:)];    
       // [self.view addSubview:linkedinView];
        [request release];

Any suggestion really appreciated!

share|improve this question
check my updated answer may be help you – Nitin Gohel Nov 16 '12 at 5:41

2 Answers

up vote 2 down vote accepted

try this bellow code may be its help you:-

-(void)postUpdateHERE
{
  NSURL *url = [NSURL URLWithString:@"http://api.linkedin.com/v1/people/~/shares"];
  OAMutableURLRequest *request =
  [[OAMutableURLRequest alloc] initWithURL:url
                            consumer:[self getConsumer]
                               token:self.accesstoken
                            callback:nil
                   signatureProvider:nil];

  NSDictionary *update = [[NSDictionary alloc] initWithObjectsAndKeys:

                    [[NSDictionary alloc]
                     initWithObjectsAndKeys:
                     @"anyone",@"code",nil], @"visibility",

                    @"comment goes here", @"comment",
                    [[NSDictionary alloc]
                     initWithObjectsAndKeys:
                    @"description goes here",@"description",
                    @"www.google.com",@"submittedUrl",
                      @"title goes here",@"title",
                    @"http://economy.blog.ocregister.com/files/2009/01/linkedin-logo.jpg",@"submittedImageUrl",nil],@"content",
                    nil];
  [request setValue:@"json" forHTTPHeaderField:@"x-li-format"];
  [request setValue:@"application/xml" forHTTPHeaderField:@"Content-Type"];
  NSString *updateString = [update JSONString];
  [request setHTTPBodyWithString:updateString];
  [request setHTTPMethod:@"POST"];
  OADataFetcher *fetcher = [[OADataFetcher alloc] init];
  [fetcher fetchDataWithRequest:request
                 delegate:self
        didFinishSelector:@selector(postUpdateApiCallResult:didFinish:)
          didFailSelector:@selector(postUpdateApiCallResult:didFail:)];

}

i found this from bellow stackover flow answer:-

Can't share using OAuth Starter Kit for LinkedIn

share|improve this answer
1  
Excellent!!!,thanks a lot you save my day @Nitin Gohel – SAHIL Nov 16 '12 at 6:18
please accept my answer friend if its useful for you – Nitin Gohel Nov 16 '12 at 6:19
@NitinGohel +1 for good answer. It works for me as well. – Girish Apr 18 at 10:52
you welcome Girish – Nitin Gohel Apr 18 at 11:06

You may need to do more, but for sure you'll need to set the length...

[request setValue:[NSString stringWithFormat:@"%d", updateString.length] forHTTPHeaderField:@"Content-Length"];
share|improve this answer
thanks for you update !!! @danh – SAHIL Nov 16 '12 at 6:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.