How to use Action_view intent to post to facebook wall?

how to use Action_view intention to publish on facebook wall in android?

I did facebook sdk integration with my Android app, it works fine for me.

But I want to do this with the intention of Action_view .

+7
source share
2 answers
 Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse("http://www.facebook.com/dialog/feed?app_id=YOUR_APP_ID&redirect_uri=REDIRECT_URI"); 

This works great for me.

Add your appid and redirected uri to the above url.

+3
source

Please refer to this question: Android and Facebook intend to share

The "Intention" campaign for Facebook has been violated for a long time. They still haven't completely fixed it.

0
source

All Articles