テキスト/写真/ビデオをInstagramに共有したい。私はこれを長い間検索していますが、適切なドキュメントを取得できませんでした。Instagramでシェアすることを知っている人がいたら教えてください。
質問する
7379 次
2 に答える
2
現時点では、API を介したアップロードはできません。次の理由により、これを追加しないことを意識的に選択しました。
Instagram は外出先でのあなたの生活の一部です。アプリ内からの写真を奨励したいと考えています。ただし、将来的には、ケースバイケースで個々のアプリにホワイトリストへのアクセスを許可する可能性があります。
私たちは、スパムや低品質の写真と戦いたいと考えています。他のソースからのアップロードを許可すると、Instagram エコシステムに何が入ってくるかを制御するのが難しくなります。以上のことから、私たちは、ユーザーが私たちのプラットフォームで一貫した高品質のエクスペリエンスを確実に得られるようにする方法に取り組んでいます.
フックを試すことができるかもしれません: http://instagram.com/developer/iphone-hooks/またはhttps://instagram.com/developer/mobile-sharing/android-intents/
于 2013-10-10T19:35:53.140 に答える
0
次のコードを試してください。
@property (nonatomic, retain) UIDocumentInteractionController *dic;
CGRect rect = CGRectMake(0 ,0 , 0, 0);
UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, self.view.opaque, 0.0);
[self.view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIGraphicsEndImageContext();
NSString *jpgPath = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents/test.igo"];
NSURL *igImageHookFile = [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@"file://%@", jpgPath]];
// NSURL *igImageHookFile = [[NSURL alloc] initWithString:[[NSString alloc] initWithFormat:@"file://%@", screenshot]];
self.dic.UTI = @"com.instagram.photo";
self.dic = [self setupControllerWithURL:igImageHookFile usingDelegate:self];
self.dic=[UIDocumentInteractionController interactionControllerWithURL:igImageHookFile];
self.dic.annotation = [NSDictionary dictionaryWithObject:@"Here Give what you want to share" forKey:@"InstagramCaption"];
[self.dic presentOpenInMenuFromRect: rect inView: self.view animated: YES ];
- (UIDocumentInteractionController *) setupControllerWithURL: (NSURL*) fileURL usingDelegate: (id <UIDocumentInteractionControllerDelegate>) interactionDelegate {
UIDocumentInteractionController *interactionController = [UIDocumentInteractionController interactionControllerWithURL: fileURL];
interactionController.delegate = interactionDelegate;
return interactionController;
}
わたしにはできる。お役に立てば幸いです。
于 2013-04-03T04:45:17.250 に答える