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 sending an app request from my iphone app, using this code:

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                               @"Join my app",  @"message", [NSString     stringWithFormat:@"%@", [[filteredContacts objectAtIndex:path] valueForKey:@"id"]] ,@"to",
                               nil];

    [facebook dialog:@"apprequests"
       andParams:params
     andDelegate:self];

while [[filteredContacts objectAtIndex:path] valueForKey:@"id"] returns a facebook ID value.

When a FB friend of mine gets the request he can see it in the notifications section on his facebook - but only on the website itself. When trying to find it in the facebook iphone app - it's just not there. also, it's not found on the mobile site.

How can it be posible that I see the notification on the website only?

share|improve this question

1 Answer

up vote 0 down vote accepted

Well the answer was very simple - I should have define the app as a mobile app when I created it as a FB app.

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.