In my app there is a label which once clicked should make the user making a 'like' action on facebook.
In this question there is the following piece of code supposed to make that action :
// Change OBJECT_ID to an actual object id Titanium.Facebook.requestWithGraphPath('OBJECT_ID/likes', {}, 'POST', function(e) { if (e.success) { alert('Success! From FB: ' + e.result); } else { if (e.error) { alert(e.error); } else { alert('Unkown result'); } } });i have generated an url for the page to be liked from this page but i don't think this is the required 'OBJECT_ID' for that graph request.
What is the OBJECT_ID ?!