In my application I want to be able to share some content which are images from my app to Facebook, Instagram and Twitter. I know i can send a broadcast to do that using the below code:
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("plain/text");
sharingIntent.putExtra(android.content.Intent.EXTRA_TEXT, "This is the text that will be shared.");
startActivity(Intent.createChooser(sharingIntent,"Share using"));
but my problem is that I wanna get a callback that tells me if the user has shared the content(image) or not. Is there any kind of way to do this? What about the Facebook sdk? Does it provide such a functionality? I've searched about Instagram and it seems that they don't provide such a funcionality. What about Twitter?