facebook-connect

FQL when logged out

Is it possible to query using Facebook Query Language when not currently logged in as a Facebook user? I'm trying to simply query when the user isn't logged in, so I can return their name, but instead of throwing up any errors, it just returns a response but the fields are blank. Any ideas why this occurs, or do I need to look at storin...

Using Facebook Connect with Authlogic

I am trying to make Authlogic and Facebook Connect (using Facebook) play nice so that you can create an account either the normal registration way or with Facebook connect. I have been able to get the connect to work one way but logging out only loggs out on facebook and not on my site, I have to delete the cookies to make it working. An...

Facebook Connect - publishUserAction template problem

Not sure if this is the right place to post this but I have tried other places with no luck. I am getting the error: "The template data provided doesn't cover the entire token set needed to publish the story" My template is: "{*actor*} just scored {*points*} points." My code is: NSMutableDictionary* feedStoryParams = [[[NSMutableDi...

Login problems for an iPhone Application for a Facebook Connect Site

I'm writing an iPhone app that provides access to a website that has an existing user database. The website is using Facebook APIs to also allow Facebook users to link their existing accounts with their website accounts. I need to be able to log in both Facebook and website accounts on my website when using our iPhone client but I am ru...

facebook connect javascript example available?

in order to try out facebook connect, is it ok, if my registered status look like below Directory Status: Not submitted Directory Status: Not submitted API Key ... Application Secret ... Application ID ... Contact Email [email protected] Support Email Address [email protected] Connect URL http://localhost:8888/testa...

retrieving facebook notification messages

How to retrieve the notification messages using the facebook connect api? I am using notification_get(in php) which returns the most_recent value for the sub elements . What to do with this most_recent number ? ...

What's the proper way to add Facebook Connect and their xmlns to (X)HTML5?

I'm gleaning from this question [http://stackoverflow.com/questions/599334/facebook-connect-wont-validate] that using Facebook Connect and other facebook 'social widgets' just doesn't result in a 'valid' document. Concerning (X)HTML5, however, what would be the (most) appropriate doctype/header if I want to include Facebook Connect con...

XFBML doesn't seem to work template console.

I'm trying to create a template bundle using the Facebook template console. I want to use <fb:pronoun> in some of my templates, but I can't tell if it's working, because when I hit "update preview", nothing shows up where the pronoun should appear. According to this page in the documentation wiki, <fb:pronoun> is allowed in one line and ...

Is it better to ask questions about Facebook Connect on stackoverflow, or the Facebook developer forum?

The FB developer forum seems to be the right place to ask questions about FB Connect, but I almost never get any kind of response, much less a good one. Do people get more help with FB Connect here on stackoverflow? ...

facebook xfbml after login, get user info through javascript

i use xfbml facebook login button to authenticate user . after users entered correct password. may i know how do i use FB.Facebook.apiClient or any related javascript to get user logined information? ...

Facebook-connect demo - is "Callback URL" == "Connect Callback URL" ?

Hi, I'm starting to feel stupid. I'm following the Facebook-Connect demo "The Run Around". At the point when I navigate to http://www.[mysite].com/testing/register_feed_forms.php to register the one-line story, I get the following error: Error while setting up application: You need to configure your callback URL in the Facebook Deve...

Callback function parameter issue

Hello, I'm writing a callback function for the FB.Connect.showPermissionDialog() function which accepts permissions and an optional callback function. It's supposed to be passed null if the user rejects the permissions dialog. But for some reason, my script always makes the post request even if the permissions request failed. echo("F...

search facebook application info using api key

is there anyway to search for applicaiton info like "connect url","callback url"... etc.. using api key? ...

template_bundle_id for facebook js

can anyone please explain to me what template_bundle_id for in facebook js.. Example below template_bundle_id is hardcoded FB.Connect.showFeedDialog(53126803199, null, target, null, null, FB.RequireConnect.promptConnect); 1.what is the use of template_bundle_id if i can hardcode the template_bundle_id ? 2. is unique template_bundle...

What information does Facebook connect actually give a developer

Having read the Facebook connect documentation I'm unable to determine what information I will have. I realise I will have the Profile photo & Proxy email and access to a friends mechanism. I'm reasonably sure I will have access to First name and surname. Will I have access to things like Age? EDIT: This isn't a Facebook APP, I'm using...

Why do I get a popup instead of an in-page modal dialog box when call requireSession or click on fb:login-button?

Update: The problem seems to have magically fixed itself, because I don't know what changed. If someone has an idea about how I accidentally fixed it, please post (I include myself :P). I'm trying to use Facebook Connect on my site, but I'm having trouble with using requireSession or fb:login-button. Currently, when a user clicks the co...

What is the difference between showFeedDialog and publishUserAction Facebook API?

I saw few tutorials mentioning showFeedDialog, but none that mention how to use publishUserAction. what is the difference anyway? Is there anyway to use showFeedDialog without prompting the user ? Are there any good tutorial on how to use publishUserAction? why does publishuseraction have a suqeuncebase parameter while showfeedialog do...

Is there a way to set the title in showFeedDialog?

I'm pretty sure the default title "Publish this story to your friend's Facebook Wall?" is incorrect. When the user publishes the story, it will appear on his and his friends' news feeds, but not on the walls of the user's friends. I'd like to customize the title so that it doesn't contain a lie. Is there a way for me to do that? ...

How can I block until the user hits the hits "close" on FB.Connect.logout?

I have some HTML that looks like this: <a onclick="FB.Connect.logout(function() { window.location = '/'; });"> link text </a> logout brings up a modal that tells the user he's logging out of Facebook and has "close" button on the bottom right. Unfortunately, the browser proceeds to '/' per the callback function. How can I stop that ...

facebook connect using FB.Connect.showFeedDialog without fb:login-button

I have a facebook application set as a iframe and i'm trying to use FB.Connect.showFeedDialog to publish stories to a users feed. I'm working from this example http://papermashup.com/using-facebook-connect/ which doesn't work until you login using the fb:login-button. I've been attempting to modify the code for several days and I was w...