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.
The fbrequest-form tag has no wiki summary.
2
votes
1answer
210 views
Linker error: CFHTTP request methods in libShareKit.a on Xcode 4.5 and ShareKit 2.0
I try to intergrate the sharekit 2.0 into my app and installed the new ShareKit 2.0 as a Submodule in my local Git repository. I think I've followed the install instructions properly, but I'm getting ...
1
vote
0answers
67 views
Not receiving response from facebook
I have a problem when I send a post to my wall from my iPhone app.
I have all the delegate methods implemented and the method:
-(void)request:(FBRequest *)request didReceiveResponse:(NSURLResponse ...
0
votes
1answer
173 views
Facebook , OSX and FB Requests
We are in the process of converting one of our games from iOS over to the OSX app market. A big part of our game is the social features which we use the iOS sdk for our game. We are starting to run ...
1
vote
1answer
705 views
Check Facebook Permissions on iOS
I've seen this post which describes how to use the graph api to check a user's permissions, however I'm not sure how to actually check a specific permission.
Calling [facebook ...
1
vote
2answers
934 views
FQL query to fetch a user's Facebook friend's gender PLUS meeting_sex
Not quite as racy as it sounds - I'm using the below code to get a user's male or female friends only and it works fine. However, I also want to check their 'meeting_sex' which is a list of the ...
0
votes
1answer
385 views
fb:request-form showing blank page
This is my code
<fb:serverFbml style="width: 760px;">
<script type="text/fbml">
<fb:fbml>
<fb:request-form
action="http://apps.facebook.com/MyAPP/invite.php"
target="_top"
...
2
votes
0answers
164 views
Error while doing FQLRequest
I am doing a FQL request when in my view controller through a specific method.
Here is my request.
NSString* fql = [[NSString alloc] init];
fql = [NSString stringWithFormat:@"SELECT uid, name FROM ...
1
vote
1answer
196 views
Can't get the uids that back from post of fb:request-form on MVC
I'm tring to get the uids that user selected at the but always back null the ids.
<fb:request-form action="http://myapp/controller/index?id=<apid>&sk=<secret>"
...
0
votes
1answer
825 views
fb:request-form in iframe redirects away from facebook
I have an <fb:requestform> in an iFrame Facebook app. I have set target="_parent", so that the callback will target the parent iFrame and not itself, which seems to work as expected. But, ...
0
votes
1answer
1k views
Facebook API friends_get is extremely slow
I have a PHP application running in iFrame mode. I am rendering an <fb:multi-friend-selector condensed="true"> inside of <fb:serverfbml> tags. This is inside a PHP file that calls a ...
2
votes
4answers
4k views
Disable redirect in fb:request-form Send/Cancel button
How do I disable the redirect in Facebook's invite form?
<fb:serverfbml style="width: 600px; height: 650px;">
<script type="text/fbml">
<fb:request-form
...
1
vote
2answers
3k views
How to modify the content of fb:request-form dynamically using Javascript?
I would like to customize my request-form content using javascript.
Say i have this in my html...
<div id="invite">
<fb:serverfbml style="width: 600px; height: 650px;">
<script ...
6
votes
4answers
15k views
Facebook, iframe app, fb:request-form, action attribute problem
I'm making a facebook iframe application
I'm making a request form with my own form data. What should I do in order to process the data?
If I put action="http://apps.facebook.com/[appName]/abc.php" ...