对于我正在开发的应用程序,我正在集成不同的社交服务,用户可以选择共享使用该应用程序创建的内容。
我想了解的是,facebook-messenger 应用程序是否公开了可用于执行某些操作(基本上是给他/她的 friend 之一发短信)的 URL 方案,或者是否存在特定的 UTI与 UIDocumentInteractionController 结合使用。
提前感谢任何帮助/提示/建议
Best Answer-推荐答案 strong>
您无法撰写消息,但可以通过 Messenger 发送链接、照片或视频。
Facebook 为此提供了 API。
导入 FBSDKShareKit
#import <FBSDKShareKit.h>
创建内容并分享
FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
content.contentURL = [NSURL URLWithString"http://www.url.com"];
content.contentTitle = @"My link!";
content.contentDescription = @"Check out my link!";
[FBSDKMessageDialog showWithContent:content delegate:self];
您还需要使您的 Controller 符合 FBSDKSharingDelegate
#pragma mark - FBSDKSharingDelegate
- (void)sharerid<FBSDKSharing>)sharer didCompleteWithResultsNSDictionary *)results {
}
- (void)sharerid<FBSDKSharing>)sharer didFailWithErrorNSError *)error {
}
- (void)sharerDidCancelid<FBSDKSharing>)sharer {
}
可用的内容是:
- FBSDKShareLinkContent
- FBSDKSharePhotoContent
- FBSDKShareVideoContent
关于ios - 在 Facebook Messenger 上分享,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/19683118/
|