Facebook Messenger撰写预定义消息

我正在使用fb-messenger://撰写打开Facebook Messenger Composer,但我无法将预定义的消息放入composer php。

有人知道参数吗?

您应该使用FBSDKShareKit通过messenger发送内容。

导入FBSDKShareKit

#import  

创建内容和分享

 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]; 

您还需要将控制器符合FBSDKSharingDelegate

 #pragma mark - FBSDKSharingDelegate - (void)sharer:(id)sharer didCompleteWithResults:(NSDictionary *)results { } - (void)sharer:(id)sharer didFailWithError:(NSError *)error { } - (void)sharerDidCancel:(id)sharer { } 

可用内容如下:

  • FBSDKShareLinkContent
  • FBSDKSharePhotoContent
  • FBSDKShareVideoContent