Share photo/video via facebook, twitter android intent error occurred
- by flybyword
I have a problem when share from my app android via to facebook, twitter, gmail.
Code:
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("image/video");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse(mediaPath));
startActivity(Intent.createChooser(share, "Share"));
Share to gmail is OK.
But when share, upload photo/video to facebook or twitter so error occurred.
Pls help me!