Is it possible to post something on a user's friend's wall from with the titanium app?
Thanks in advance for any assistance!
2 Answers
Hi Saquib,
Yes, you can post on friends wall on Facebook. For that you need your friend's Facebook Id
Use below code
var friend_facebook_id = ""; //your friend's Facebook Id Ti.Facebook.requestWithGraphPath(friend_facebook_id+'/feed', {message: "Trying out FB Graph API and it's fun!"}, "POST", function(e) { if (e.success) { alert("Success! From FB: " + e.result); } else { if (e.error) { alert(e.error); } else { alert("Unkown result"); } } });Hope this helps you
Your Answer
Think you can help? Login to answer this question!