facebook-connect

Facebook Connect FB.Connect.showFeedDialog

I am running Facebook connect and can post to a users wall using FB.Connect.showFeedDialog. It works fine for most of the process but after the user clicks publish and the following message is displayed "The post is now visible on your friend's Wall." It holds on this page for a second and then the 'pop-up' redirects to the following T...

How does one handle a Facebook Connect timeout

I don't see any way to respond to a timeout issue if Facebook is down or not responding when I use FB.init. There's no option here: http://wiki.developers.facebook.com/index.php/JS%5FAPI%5FM%5FFB.Bootstrap.Init%5F2 Would be nice if there were some way to respond to errors like you can with normal xmlhttprequests. Is there such a thing w...

Variable interpolation in fb:req-choice url

For my invitation feature of my Facebook Connect app I need to be able to tell which invitation a user responds to. I have decided to rely on the Facebook UID for that. How can I include that ID in the url that Facebook generates for fb:req-choice? <fb:request-form action="#{@post_url}" method="POST" invi...

How to use facebook-connect invite friends iphone app ?

My app needs to invite friends from facebook conenct is this possibl e? Any examples ? Please help ! ...

Facebook FBML running a PHP url

I have a couple questions in the request. I have been successful using FBML to execute SWF files on a external server inside facebook. what I need to do now is to run similar to the SWF execution a PHP app.. http://test.com/opening.php So what is the best way? fb:iframe or another way? I would like a simple example if possible. Thanks...

Simple Facebook Connect in Google App Engine (Python)

Does anyone have a simple and successful demo implementation of facebook connect in an google app engine application. I am developing an web application and want facebook connect to be the primary method for logging in. ...

iPhone SDK: Loading Facebook Connect Login View before everything else

I have a full iPhone application done but I now want to add Facebook Connect. My question is how to load a new/separate view that only has the Facebook Connect button. I need it to be that the only way they can get into the app is for the Facebook login to be successful. If there is a current active Facebook session then this will no lo...

How to make Facebook Connect to stop log in authomatically

After I logged in with facebook first time and then log out on my site, it tries to log me in using facebook connect every time I open page with connect button. Is there any way to disable this feature? Maybe I need to create a specific callback function but I can't find this in docs. ...

Via-link on facebook stream box updates

The wiki page on fb live-stream says this: On the Connect tab, set the Connect URL to your server so Facebook can verify the call is coming from you. This is also the page where users are directed if they click the "via " link from their streams. (http://forum.developers.facebook.com/viewtopic.php?id=42983) I've done this for my a...

Integration of Facebook Group Wall in iPhone app

Hi all, Is it possible to integrate a wall of a specific Facebook group into an iPhone application. Is it possible to do using Facebook connect? or any other libraries? The task is to display the wall of a group. Can we bypass sign up and display the activity on the wall on the tab? Would it be possible for a registered FB user to mak...

Photos in the Facebook album not showing

I am using Facebook connect and JS client library to retrieve my photos in my Facebook account. Below is my code: <div id="photos_pics"></div> <script type="text/javascript"> var widget_div = document.getElementById("photos_pics"); FB.ensureInit(function () { FB.Facebook.get_sessionState().waitUntilReady(function() { ...

How to get facebook page's page_id via facebook connect?

I have a facebook connect site using the c# facebook toolkit. I want to publish some stuff on the user's facebook page's wall. I can do this using the stream.publish in the Open Stream API. But, to do any of this a page_id is required. Yet, I don't see any methods where you can get access to the page_id based on the user_id. So, basic...

Facebook Connect: Permissions Error [200] using "stream.publish" with PHP

Hi all, I've been implementing Facebook Connect into a site and am using both the PHP API, to allow me to automatically post data to a user's wall, as well as the JS API, for manual posting, permissions dialogs, etc. When the user uses the manual method it works 100%...the popups are displayed correctly, and the data gets posted to thei...

Facebook Connect API not populating user data when facebook-logo="true" option is used

Hi folks, I'm working on a Facebook Connect app. I have the Connect button up and running and users can successfully authenticate via Facebook. However, I'm having trouble getting their profile picture and name to display with XFBML. Here is what I'm doing: <script type="text/javascript"> function fb_login_handler() { var userbox ...

Facebook Connect - Using both FBML and PHP Client

I am doing my second Facebook connect site. On my first site, I used the facebook coonect FBML to sign a user in, then I could access other information via the PHP Client. With this site, using the same exact code, it doesn't seem to be working. I'd like someone to be able to sign in using the Facebook button: <fb:login-button length...

Facebook Connect for iPhone web pages eating memory when not in use?

I've used the Activity Monitor and Object Allocations tools in xcode to check out my application and the sample facebook login app and what I've found is that they all of them eat about 6-10M (!) the first time the user visits the page. I assume the issue is page content being cached although I think that this code: - (NSCachedURLRespo...

Facebook Connect for iPhone - want to log in and post in one step

This is a repost from the Facebook developer forums, where no-one has responded yet. This is what I would like to do: user touches Connect button code retrieves session and attempts to resume if session does not resume, pop up login dialog pop up feed dialog (after user has successfully logged in) What actually happens in the case w...

Facebook Connect help.

According to the Facebook API documentation, most of the work is handled through javascript. That means that all the processing is done, and then the front end checks if the user is connected to Facebook/authorized. right? My question is: Suppose a user goes to my site for the first time ever. He clicks on "facebook connect". The ja...

Security question: Is this a valid way to hack into Facebook applications? (and possibly Facebook)?

Your friend connects to Facebook and checks "remember me". Facebook creates a cookie on the browser. Your friends goes to the bathroom. You steal your friend's cookies from his browser and its data. You go home and make these cookies with that data. Assuming Facebook does not associate cookies + IP, you can gain access to the Facebook...

Link facebook connect accounts to user accounts on my site

I'm having some trouble working out where I need to start with facebook connect. Basically I've set up my application in facebook and got the connect button working. Now I want to do something very similar to diggs implementation where upon logging into facebook they are directed to a create account page where they have to enter a user...