I want to open a particular follower conversation on twitter native app when i click on a button from my application but not working with the below line of code, please can anybody help??
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("twitter://messages?id=" + recipent_id + "-" + sender_id));
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(intent);