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 a message from an app to a user when a specific event happens. Right now I have this code

$param = array(
   'message'      => 'XYZ shared a file with you',
   'data'         => 'additiona_string_data',
   'access_token' => $facebook->getAccessToken(),
);
$tmp = $facebook->api("/$uid/apprequests", "POST", $param);

but I always get Uncaught OAuthException: (#2) Failed to create any app request thrown

I don't know where is the problem.

share|improve this question
You should include the entire error that you received. In this case it is pretty obvious that it came from the facebook sdk but it would allways be a good idea to include the entire error string. It usually contains information about what file has raised the error and even on what line the code was on. – Lix Jan 14 '12 at 14:29

2 Answers

up vote 7 down vote accepted

You should read the requests documentation.
In there is an explination about two different types of requests.

What you need is the app generated requests, that means you'll need the apps access token and not the users.

I assume that you are using the users access token because you did not include the initiation of the facebook object in your code sample and have probably verified the user already hence the getAccessToken() call will return the users access token and not the applications access token.

share|improve this answer
2  
thanks for pointing me in the right direction – slash197 Jan 14 '12 at 17:59

I'm a little confused as to "I'm trying to send a message from an app to a user when a specific event happens. Right now I have this code" means.

  1. Sending an email to a user when someone posts on their wall

  2. Sending an event invite to a user

  3. Sending an app invite to a user

  4. Writing on a users wall when something happens like 'XYZ shared a file with you'.

To answer

  1. You need email and read_stream permissions of the user. Monitor his wall using the RealTime Updates and then email him using your server SMTP.

  2. See http://developers.facebook.com/docs/reference/api/event/#invited on how to create an event invite

  3. As @Lix pointed out, see https://developers.facebook.com/docs/channels/#requests

  4. You should accomplish this using the new Open Graph object/actions. See this example: https://developers.facebook.com/docs/beta/opengraph/tutorial/

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.