Android Question Sharing post from my app directly to a Facebook group

khwarizmi

Active Member
Licensed User
Longtime User
Hi all
How to share a post from my app directly to a Facebook group?
This code is for sharing directly to my wall, but not to a Facebook group.
B4X:
Dim shareIntent As Intent
shareIntent.Initialize(shareIntent.ACTION_SEND, "")
shareIntent.SetType("text/plain")
shareIntent.PutExtra("android.intent.extra.TEXT","Text To Share")
shareIntent.SetPackage("com.facebook.katana")
StartActivity(shareIntent)
 
Cookies are required to use this site. You must accept them to continue using the site. Learn more…