我正在使用this plugin在我的离子应用中实现社交分享功能。
它工作正常,但有时会发送一张空白图片。
这是我的代码
// social plugin to share
$scope.shareAnywhere = function(title, restaurantName, image, link) {
$cordovaSocialSharing.share(title + " at " + restaurantName, "Check out this place", null, "https://www.xxxxx.com/post/" + link);
}
主要问题仍然是为什么不发送图片。