Android Question How to send some Message to someone's Facebook Messenger?

Theera

Well-Known Member
Licensed User
Longtime User
Hi all,
Is there someone has used to send some message to the others'Facebook Messenger? Please to guide your code for studying.
 

asales

Expert
Licensed User
Longtime User
The easy way is using an intent:
B4X:
Dim inten As Intent
inten.Initialize(inten.ACTION_SEND, "")
inten.SetPackage("com.facebook.orca")
inten.SetType("text/plain")
inten.PutExtra("android.intent.extra.TEXT", "This is the text")
StartActivity(inten)

Manifest:
B4X:
AddManifestText(
<queries>
    <package android:name="com.facebook.orca" /> 
</queries>
)
 
Upvote 0

Cesaral

Member
The easy way is using an intent:
B4X:
Dim inten As Intent
inten.Initialize(inten.ACTION_SEND, "")
inten.SetPackage("com.facebook.orca")
inten.SetType("text/plain")
inten.PutExtra("android.intent.extra.TEXT", "This is the text")
StartActivity(inten)

Manifest:
B4X:
AddManifestText(
<queries>
    <package android:name="com.facebook.orca" />
</queries>
)

Where do you set up the name of the person that will receive the message?

Thanks!
 
Upvote 0

Theera

Well-Known Member
Licensed User
Longtime User
Upvote 0
Top