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.
$param = array(
  'access_token' => $this->getAccessToken(),
  'object' => 'user',
  'fields' => 'first_name,last_name,birthday,email,friends,locale,location,relationship_status',
  'callback_url' => 'http://x.com/post',
  'verify_token' => VTOKEN
);

$subs = data('fb')->getFb()->api('/y/subscriptions', 'POST', $param); 

When I try to subcribe with that code above, I get the following error:

Uncaught OAuthException: (#2201) response does not match challenge, expected value =

I am 100% sure that the callback url is available and the code on the callback url is:

if (
   $method == 'GET' && $_GET['hub_mode'] == 'subscribe' &&       
   $_GET['hub_verify_token'] == VTOKEN) {
        echo $_GET['hub_challenge'];
} else if ($method == 'POST') { 
        // code me
}

So it should work, what could be the problem?

share|improve this question
How do you determine $method? – eWolf Nov 13 '12 at 21:47

1 Answer

Are you sure that the callback is available? Did you try a GET call on your own?

Also, take a look on the following: https://github.com/facebook/real-time/blob/master/samples/php/callback.php

share|improve this answer

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.