我们可以通过iPhone 应用程序中的LinkedIn 集成来共享消息(文本) 。……
但是有没有可能通过iPhone 应用程序中的LinkedIn 集成来共享本地图像或url 图像......?
提前谢谢......
我们可以通过iPhone 应用程序中的LinkedIn 集成来共享消息(文本) 。……
但是有没有可能通过iPhone 应用程序中的LinkedIn 集成来共享本地图像或url 图像......?
提前谢谢......
任何我如何得到一个相对的解决方案......
在 iPhone 中的 LinkedIn 集成中共享图像---->
NSURL *url = [NSURL URLWithString:@"http://api.linkedin.com/v1/people/~/shares"];
OAMutableURLRequest *request =
[[OAMutableURLRequest alloc] initWithURL:url
consumer:oAuthLoginView.consumer
token:oAuthLoginView.accessToken
callback:nil
signatureProvider:nil];
NSDictionary *update = [[NSDictionary alloc] initWithObjectsAndKeys:
[[NSDictionary alloc]
initWithObjectsAndKeys:
@"anyone",@"code",nil], @"visibility",
statusTextView.text, @"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:@"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:)];
我认为没有。我能够通过共享工具包向 LinkedIn 发送文本。但我无法将图片上传到 LinkedIn。所以,我认为这是不可能的。