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)