I’m trying to share an image using the social plugin. All the examples I have seen for sharing images use a local image, but I need to share an image from my server. So I’ve tried the following code:
native.showPopup("social", { message = "some message", url = "myurl.com", image = { { filename = "imageurl" } } })
This doesn’t get the image shared, but it also causes the app I’m trying to share it with to crash (been testing on Android so far, iOS is coming soon). So I’m guessing I’m doing something wrong, and would appreciate any guidance…