1
所以問題是,指定message
是不是在Facebook的模式共享窗口,它是空的沒有任何文字。Ionic2社交分享Facebook不工作
import {SocialSharing} from 'ionic-native';
...
shareFb(message?: string){
SocialSharing.shareViaFacebook(message,null,null).then(()=>{
//Success
},
()=>{
//cancel
});
}
<ion-icon name="logo-facebook"
class="share-facebook" (click)="shareFb(message.description)">
</ion-icon> <ion-icon ios="logo-twitter" md="logo-twitter"></ion-icon>