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.

I was trying to implementing facebook real time update. It looks like i was able to subscribe.

  `$param = array(
            'access_token' => $user_access_token,
            'object' => 'user',
            'fields' => 'name',
            'callback_url' =>'http://127.0.0.1/storm/callback.php',
            'verify_token' => 'XYZ',
            'active' => true
            );
  $subs = $facebook->api('/'.$app_id.'/subscriptions', 'POST', $param);

`

I get this error:

{"message":"http:\/\/127.0.0.1\/storm\/callback.php?hub.mode=subscribe&hub.challenge=1229793076&hub.verify_token=XYZ is an internal url, but this is an external request.","type":"CurlUrlInvalidException"}}

Does this have anything to do with me testing it locally?? How can i fix this? Please let me know.

share|improve this question

1 Answer

up vote 1 down vote accepted

You need to use your real ip address in 'callback_url'

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.