After calling facebook messenger from an android app with:
Long targetId = UID_HERE;
Uri uri = Uri.parse("fb-messenger://user/");
uri = ContentUris.withAppendedId(uri, targetId);
Intent intent = new Intent(Intent.ACTION_VIEW, uri);
startActivity(intent);
is there any way to let the caller app know the facebook user id which will be interacting in facebook messenger?