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.

Possible Duplicate:
Running facebook application on localhost

I am trying to start off some standard Facebook integration for my next web-app. This is my CakePHP + Facebook SDK code.

$app_id = 'MY_APP_ID';
$secret = 'MY_APP_SECRET';

App::import('Vendor', 'facebook/facebook');
$facebook = new Facebook(array(  'appId'  => $app_id,  'secret' => $secret));    

echo $facebook->getUser();

The output this gives me is (even though I'm logged in)

0

Now from what I've read on the internet the only reason this is happening is because I'm running on localhost. I am using the latest version of the SDK.

Is there a fix to this? Ideally I'd like to continue testing on localhost.

share|improve this question

marked as duplicate by Ken White, Jeff Atwood Jul 3 '11 at 8:39

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 2 down vote accepted

this is duplicated question. look on Running facebook application on localhost

share|improve this answer
Thanks, that question had a satisfactory answer. I have flagged this question as a duplicate. – Angad Jul 2 '11 at 17:50

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