I have my portfolio at http://visualise.ca and I would like to receive Facebook notifications (within Facebook) when a visitor does a Like on one of my photo.

1) Is that possible?

I was looking at the FB.Event.subscribe documentation, but I'm not sure.

https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

2) If not possible do you have any suggestions on how I could receive some type of instant notifications anyhow?

The information I would need would be : - The URL liked - The Facebook user ID of the "Liker" or his profile page url

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

1) yes, subscribe to the edge.create event and then AJAX to your server the information you want to store. Facebook Id will ONLY be available to you if that user has previously authenticated to your app.

2) it's possible, so no answer for #2.

link|improve this answer
OK so I added FB.Event.subscribe('edge.create', function(response) { SOME CODE HERE }); and notify="true" and it should work? Could you please Like a photo on my site please to test. – Gab Feb 13 at 0:03
I'm unable to make it work and have created a specific question for this: stackoverflow.com/questions/9254388/… – Gab Feb 13 at 3:04
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.