我已经实现了与insta故事的共享,这些故事在iOS 12上运行良好,但在iOS 13上却无法运行。
我已经尝试/验证了以下几点
所有内容均符合文档规定:https://developers.facebook.com/docs/instagram/sharing-to-stories/
if schemeAvailable(scheme: "instagram-stories://share"){
let pasteboardItems = ["com.instagram.sharedSticker.backgroundImage":UIImagePNGRepresentation(postImage!)!,
"com.instagram.sharedSticker.contentURL":"http://google.com"] as [String : Any]
UIPasteboard.general.setItems([pasteboardItems])
UIApplication.shared.open(URL(string: "instagram-stories://share")!, options: [:], completionHandler: { (finished) in
print("")
})
}else{
print("Can't open URL")
}
答案 0 :(得分:1)
我解决了我的问题,弄乱了info.plist。
确保已在instagram-stories
中添加了LSApplicationQueriesSchemes
,而不是URL Schemes
中添加了