I have a webpage with a Facebook Like button (social plugin). I need to show extra information on my page when the user has liked the page.
I know there has been similar questions but the answer has been to use the edge.create
event to react to the user clicking the like button. This works fine except when the like happened prior to loading the page.
Others have suggested using a signed_request
but I believe this is only applicable to canvas applications,
I know I can use the API to check for the like but this requires the user to grant permissions, but I want to do this in an anonymous manner (I am not interested in knowing who the user is, I just want to know if they liked the page).
Is there any way to do it?