android - Send message to a specific user trough com.facebook.orca -


i've tried follow, seems not works:

intent sendintent = new intent(); sendintent.setaction( intent.action_send ); sendintent.putextra( intent.extra_text, "test" ); sendintent.settype( "text/plain" ); sendintent.putextra( intent.action_sendto, "{facebook_user_id}" ); sendintent.setpackage( "com.facebook.orca" );  startactivity( sendintent ); 
  • how send message specific facebook user trough facebook's messenger ?


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

android - Unable to generate FCM token from dynamically instantiated Firebase -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -