LinkedIn を iPhone アプリに統合することで、メッセージ(テキスト) を共有できます。....
しかし、iPhoneアプリでLinkedIn統合を介してローカル画像またはURL画像を共有する可能性はありますか……?
よろしくお願いします.....
LinkedIn を iPhone アプリに統合することで、メッセージ(テキスト) を共有できます。....
しかし、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 に画像をアップロードすることはできませんでした。ですから、無理だと思います。