Ionic 6 cordova/capacitor社交分享不支持ios



我使用了" cordova-plugin-x-socialsharing ";在Android上,它正常工作,但在IOS上,当尝试与任何社交网络共享时,我得到错误"not available">

作为替代方案,我尝试使用"分享电容",但在选择whatsapp时,会显示一条提示信息:"从主屏幕打开whatsapp继续"。然而,即使打开应用程序,它仍然显示相同的消息。

shareWithWhatsapp(content) {
this.sharePlugin
.canShareVia('whatsapp', content.message, '', content.image, content.url)
.then(() => {
this.sharePlugin.shareViaWhatsApp(content.message, content.image, content.url);
})
.catch((e) => {
this.showMessage('Error to try share with whatsapp');
});
}

尝试只分享消息,也许whatsapp仍然有分享插件的问题。

请注意,在iOS上共享图像和文本时,只有图像被共享-让我们希望WhatsApp创建一个适当的iOS扩展来解决这个问题。

参考:https://github.com/EddyVerbruggen/SocialSharing-PhoneGap-Plugin whatsapp

最新更新