Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

can someone tell me how to replicate the like button and functionality I see in this app page:

https://www.facebook.com/illamasqua/app_4949752878

ive created an app...and cant determine the users statuc in regards to the liking of a certain page.

Ive added a like button using plugin code...but now need to detect the click of it. Struggling!

http://apps.facebook.com/hoo_promo/

many thanks Shaun

share|improve this question
an earlier question got the answer that this is not possible....but then why does the first app above work???? – Shaun UUDotCom Jun 1 '12 at 12:06

1 Answer

up vote 1 down vote accepted

1) Create an app and set the page tab setings.enter image description here

2) Place this code in the index.php

<?php
 require 'facebook/src/facebook.php';
 $facebook = new Facebook(array(
  'appId'  => $CONF['FB_APP_ID'],
  'secret' => $CONF['FB_APP_SECRET'],
  'cookie' => false,
 ));

 // Get User ID
 $user = $facebook->getUser();
 $signed_request = $facebook->getSignedRequest();
 $like_status = $signed_request["page"]["liked"];
 if($like_status == 1){ 
 echo 'You liked it';
 }else{  echo 'Please like the page to access'; 
 } ?>

modify the config variables.

3) Add the app to fan page using this URL
https://www.facebook.com/dialog/pagetab?app_id=XXXXXXXX&next=XXXXXXXXXXXXXXXXX

change the app_id, next varaiables

Thats it.

share|improve this answer
thanks for the reply.....couple of issues: NEXT VAR....what should this be? when i add a url, i get an error on the app page...'add site url to blah '...i cant see the option to add this url anywhere....sigh.... – Shaun UUDotCom Jun 1 '12 at 12:53
next var is your site url or anywhere you want callback when user add this. – Venu Jun 1 '12 at 13:02
ive added as tab to fanpage...and seems to be working fine. thx. Needed to work out the url....which was like you said. frustrated the hell out of me this first little facebook app! :) – Shaun UUDotCom Jun 1 '12 at 13:14
you are welcome! enjoy the journey :) – Venu Jun 1 '12 at 13:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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