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'm trying to send an app to user request in facebook. Here are my codes:

<?php
        include 'connect.php';
        $param = array(
           'message'      => 'Check out the latest update',
           'data'         => 'some_data_string',
           'access_token' => $facebook->getAccessToken(),
        );
        $tmp = $facebook->api("/100001160043714/apprequests", "POST", $param);
        print_r($tmp)
?>

I'm getting this result on the last line printing:

Array ( [request] => 364366050304238 [to] => Array ( [0] => 100001160043714 ) )

The specified user id is my own account. However, I'm not getting any request. Is there any permission to enable?

share|improve this question
The fact that you are getting back a request_id shows that the invite is indeed being sent. Is you application in sand box mode? – Lix Sep 16 '12 at 9:24
what you do mean by sandbox mode? it is a canvas application. You can check it at apps.facebook.com/moribay. – Noor Sep 16 '12 at 9:26
1  
If your application is in sandbox mode, your actions within the application will be hidden to anyone not listed in the "roles" of the application as a developer/tester/admin... etc.. Check your application settings.. – Lix Sep 16 '12 at 9:27
I'm myself the admin, so at least me should have seen it – Noor Sep 16 '12 at 9:29
1  
Assumptions and presumptions lead to problems :P Check the setting. If your app is a tab application, you might not need to set the canvas url. But for the requests to work you are required to fill this field. – Lix Sep 16 '12 at 11:08
show 8 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.