我使用ngCordova编写的优秀cordovaSocialSharing plugin的Eddy Verbruggen端口,使用该方法与本机共享表共享。我想知道用户选择与哪个选项共享,例如facebook,twitter等有可能获得这些信息吗?
成功回调"结果" object只是一个布尔值。
$cordovaSocialSharing
//message, subject, file, url
.share(null, null, null, video.video_url) // Share via native share sheet
.then(function (result) {
console.log("success sharing video!", result);
}, function (err) {
console.log("error sharing video!", err);
});