gpt4 book ai didi

ios - 从 iOS 应用打开 Facebook Messenger

转载 作者:技术小花猫 更新时间:2023-10-29 11:05:16 28 4
gpt4 key购买 nike

有谁知道如何打开带有预填文本的 Facebook Messenger 应用程序?

例如,要在指定用户处打开messenger app,可以这样写:

 NSURL *fbURL = [NSURL URLWithString:@"fb-messenger://user-thread/USER_ID"]; 
if ([[UIApplication sharedApplication] canOpenURL: fbURL]) {
[[UIApplication sharedApplication] openURL: fbURL];
}

Whats 应用程序非常简单:

NSURL *whatsappURL = [NSURL URLWithString:[NSString stringWithFormat:@"whatsapp://send?text=%@", @"String to post here"]];
if ([[UIApplication sharedApplication] canOpenURL: whatsappURL]) {
[[UIApplication sharedApplication] openURL: whatsappURL];
}

最佳答案

有这样的功能,但只存在于Facebook的SDK中。

看看这个 - https://developers.facebook.com/docs/ios/share#message-dialog

关于ios - 从 iOS 应用打开 Facebook Messenger,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25040110/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com