当我尝试通过 whatsapp 分享 link 时,在 ionic 应用程序中收到消息 **分享失败请重试**
getting message **sharing failed please try again** in ionic app when I try to share link via whatsapp
说明-:
1. 我正在从事离子项目,我试图通过 whatsapp
分享 link
中的 shareViaWhatsApp(message, image, url)
函数
我已经按照所有步骤查看了 Ionic
给出的文档
但是问题是-:
当我尝试通过 whatsapp 分享 link 时 window 打开但它给出了一条消息 分享失败请重试
然后 whatsapp window 关闭,并且共享失败
我把代码放在下面-:
shareViaWhatsapp(){
console.log('invitewhatsapp');
let message = 'Abcd';
//let image = 'sdfgbdh.jpg';
let url = "www.facebook.com";
this.socialShare
.shareViaWhatsApp(message,url,null)
.then(() => {
console.log('success');
})
.catch(() => {
console.log('Error');
});
}
html ->
<button ion-fab (click)="shareViaWhatsapp()"><ion-icon name="logo-whatsapp"></ion-icon></button>
第二个参数是图片,第三个是URL。用这个替换你的代码:
this.socialShare
.shareViaWhatsApp("Abcd",undefined,"www.facebook.com")
.then(() => {
console.log('success');
})
.catch(() => {
console.log('Error');
});
说明-: 1. 我正在从事离子项目,我试图通过 whatsapp
分享 link- 中的
我已经按照所有步骤查看了 Ionic
给出的文档
但是问题是-:
当我尝试通过 whatsapp 分享 link 时 window 打开但它给出了一条消息 分享失败请重试 然后 whatsapp window 关闭,并且共享失败
shareViaWhatsApp(message, image, url)
函数
我把代码放在下面-:
shareViaWhatsapp(){
console.log('invitewhatsapp');
let message = 'Abcd';
//let image = 'sdfgbdh.jpg';
let url = "www.facebook.com";
this.socialShare
.shareViaWhatsApp(message,url,null)
.then(() => {
console.log('success');
})
.catch(() => {
console.log('Error');
});
}
html ->
<button ion-fab (click)="shareViaWhatsapp()"><ion-icon name="logo-whatsapp"></ion-icon></button>
第二个参数是图片,第三个是URL。用这个替换你的代码:
this.socialShare
.shareViaWhatsApp("Abcd",undefined,"www.facebook.com")
.then(() => {
console.log('success');
})
.catch(() => {
console.log('Error');
});