Reputation: 4533
I have my appId for facebook. Which type of configuration and auth should I require.
Now I want to post a String message on Facebook wall when some condition true. What should I do?
Upvotes: 0
Views: 508
Reputation: 56935
Please go through below link . It might helps you a lot.
you can also send message directly using the below code.
Bundle params = new Bundle();
params.putString("message", message);
mFacebook.request("me/feed", params, "POST");
you can create facebook object and using request method you can directly post to user wall. Before posting on wall you must have to login into facebook .
Upvotes: 0
Reputation: 18746
Checkout Facebook SDK for android
also Facebook Android Tutorial It will help you.
Upvotes: 0
Reputation: 29141
I am just giving you the first link i found on the search , take a look it, it has all the things you require...
Upvotes: 1