我想分享文本/照片/視頻到Instagram。我正在尋找這個很長一段時間,但我沒有得到任何適當的文件。如果有人知道關於instagram的份額,請告訴我。如何在ios中分享文本/照片/視頻到Instagram
5
A
回答
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;
}
它適用於我。希望它可以幫助你。
2
此時,通過API上傳是不可能的。我們有意識地選擇不添加這個,原因如下:
Instagram是關於你在旅途中的生活 - 我們希望在應用內鼓勵照片 。但是,未來我們可能會根據具體情況向白名單 訪問各個應用。
我們想要打擊垃圾郵件&低質量的照片。一旦我們允許從其他來源上傳 ,就很難控制進入到Instagram生態系統的內容。所有這一切,我們正在努力找到 ,確保用戶在我們的 平臺上擁有一致的高質量體驗。
也許你可以試試鉤:http://instagram.com/developer/iphone-hooks/或https://instagram.com/developer/mobile-sharing/android-intents/
相關問題
- 1. 在iOS上分享視頻到Instagram
- 2. 分享Instagram中的照片
- 3. ios實現在照片中loacate的視頻分享
- 4. 我如何在iOS/Obj-C上分享Instagram上的視頻
- 5. Instagram:從網頁分享照片
- 6. 在Instagram中拉Instagram照片
- 7. 如何在iOS上分享照片到Facebook?
- 8. 如何使用Ionic與Instagram分享照片
- 9. 如何爲Instagram分享插入標記與照片
- 10. 使用掛鉤的Instagram視頻分享
- 11. 在iOS上分享圖像到Instagram
- 12. 團結得到iOS的照片庫中的視頻文件
- 13. 如何將高分辨率照片傳遞給iOS上的instagram?
- 14. 在ios的Instagram上分享帶有圖片的文字
- 15. Sinch SDK android共享視頻,Audiosm照片
- 16. iOS Facebook分享視頻Swift
- 17. 如何訪問Instagram照片
- 18. 分享視頻鏈接到Facebook ios
- 19. 如何在iOS中的Facebook上分享帶有視頻的HashTag文本?
- 20. 分享「照片」(Google相冊)上的照片/視頻不適用於Android應用
- 21. 確定如果Instagram嵌入代碼是爲照片或視頻
- 22. 通過PHP API在Instagram上分享我的網站照片
- 23. 如何從iOS應用上傳照片到Instagram服務器?
- 24. 如何分享iphone中的照片
- 25. 如何在Google+上分享照片?
- 26. Instagram iOS API發佈視頻
- 27. 導出照片到Instagram的
- 28. 使用UIActivityViewController在Twitter,Instagram和其他服務上分享視頻和文本
- 29. instagram分頁中的重複照片
- 30. 通過分享魅力共享視頻和照片在地鐵應用程序
使用下面的代碼,你可以張貼照片,但是這個代碼將打開相機,然後點擊照片會從你的應用Instagram的上傳。 NSURL * instagramURL = [NSURL URLWithString:@「instagram:// location?id = 1」];如果([[UIApplication sharedApplication] canOpenURL:instagramURL]){ [[UIApplication sharedApplication] openURL:instagramURL]; } – 2015-10-21 17:01:41