facebook-connect

Facebook connectivity in iphone app

how i can connect my iphone application with facebook for register the user? please help... ...

bizarre Facebook connect with authlogic problem

I set up a Facebook connecе to my application following the http://github.com/holden/authlogic_openid_selector_example. But I have a strange problem with Facebook Connect on Firefox and Google Chrome browsers, it just will not allow me to authenticate. But on Safari it works perfectly. ...

In facebook connect, how can I check if a user is a fan of my facebook page? Is it possible to track?

I am trying to determine if a user is a facebook fan. I load the facebook JS library and initialize: <script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php/en_US"&gt;&lt;/script&gt; FB_RequireFeatures(["XFBML","Connect","Api"], function() { FB.init("my_api_key","xd_receiver.htm")...

Facebook connect : how to publish on an application page as the app itself ?

After authorize the current user to create an application with the createApplication function (http://wiki.developers.facebook.com/index.php/Facebook.createApplication) I'm trying to publish streams on this new application page : $facebook = new Facebook(API_KEY,API_SECRET); $facebook->api_client->begin_permissions_mode(NEW_APP...

How does a Facebook session proxy improve security?

I'm writing an iPhone app that's using Facebook Connect. While testing, you normally embed your app secret directly into the code and set up Facebook with this call: session = [FBSession sessionForApplication:myApiKey secret:myAppSecret delegate:self]; However, for production code it's recommended to use a session proxy instead of em...

Is there a way to "link" facebook to your third-party website

Hey all, I was wondering if there is a way to link your facebook account to another website, so you don't have to log in every time just to post a status update. I'd like to link the profile when they sign up and then have it just be there to connect to whenever. CLARIFICATION: Sorry I typed this fast.. here's what I'd like to do.. b...

Solving bug with single quotes in names of friends

My JavaScript application uses Facebook Connect to display the profile pictures of a user's friends. This worked fine until a recent update on Facebook's end created a bug in Safari. Essentially, everything works fine unless a user's friend has an apostrophe (single quote) in their name. Think Irish last names like O'Connor, for exampl...

Help with Facebook Connect--trying to get the info of a user after he "connects" to my website.

Hi, I am using Django PyFacebook Middleware to allow users to connect. def index(request): FBGRABLIST = ['name', 'pic','uid','first_name','last_name', 'email'] fbdata = [] if request.facebook.check_session(request): fbdata = request.facebook.users.getInfo(request.facebook.uid, FBGRABLIST)[0] print fbd...

How can I know if the user is already in my DB with facebook connect

I'm using facebook connect on my website however some users were registered there from before, how is it possible to match the user info i have on my current DB with facebook's user which is trying to login? It's for the purpose of avoiding multiple accounts for one user I think that email_hashes were used before but its not returning ...

search users by their email id on facebook using connect api

I need to search users in facebook by their email id's. I could not find anything relevant to this. I have seen an application using facebook.users.getByEmail method but I am not able to find more about it. Please suggest. -- Errata: > By search I meant if I have a users email id then I need to find uid of that user. ...

Facebook Connect JavaScript API - friends_get never returns from callback on ie6?

The following code works on all browsers that I've seen so far other than IE6, which gives me no javascript errors or anything but never calls the callback to friends_get. I would have expected that if facebook's javascript code for this was just broken on IE6 i would have been able information about that on the internet, am I just doing...

Facebook remember me

Hi there! I want to implement a "remember me" feature on me website using the facebook connect. On my website, i have the possibility to do the login by two distinct ways: Normal login Facebook Connect When an user performs the login with facebook connect, even if he logs out on his facebook account, i want to keep him logged in on...

Facebook connect - Detect Login State using PHP

I have Facebook Connect working (partially at least). For a user who logged into facebook, when they first visit my site's login page, the following js line will refresh the page and my php log the user in. FB.init("api-key","xd_receiver.htm",{"reloadIfSessionStateChanged":true}); However, when a user logs out of facebook, the faceboo...

Facebook Connect integration: does it require flash?

I'm integrating a Flash-free web site with Facebook Connect. Loading it in Internet Explorer 7 (only in IE 7, not IE 6 nor IE 8) I get the famous IE information bar saying that the current web site requires the Adobe Flash Player and asks me if I want to install it. If I remove the code needed to the Facebook Connect integration (some ...

Getting authlogic_facebook_connect to create users in DB

Hi all, I'm using the Authlogic Facebook Connect plugin on my site. After a bit of a struggle I can sign in with FBConnect, I can get stuff from the FBSession, like the users name, and I can logout. But, the README on the plugin site seems to suggest that following the five steps will result in the FB UID being saved in your local datab...

Facebook Connect and Wordpress

Is it possible to use the facebook connect option I am seeing on a ton of sites now, to allow the user to register for a WordPress account simply by using the Facebook Connect? Note, this will be used on a Wordpress site. ...

Confusion about session objects in Facebook Connect for iPhone

I've done a lot of reading of the Facebook docs, but I'm pretty confused about the role of the session object. For instance, with the method: session = [FBSession sessionForApplication:myApiKey secret:myAppSecret delegate:self]; What am I supposed to do with the session object that's returned to me, when presumably I need to wait for ...

Mobile facebook app login enters infinite loop after a single incorrect username/password

I have developed a facebook application for the web, iPhone, and Blackberry. For the web, I direct users to http:// facebook.com/login.php?api_key=eb5e547ac5534ffc3862bc74017d344d&v=1.0&next=webLogin.php, where they can sign in without issue. That is, if they enter a wrong password and then enter the correct password, they are forwarde...

Facebook Connect: email permission with proxy or normal email?

Hi, is there an fb-connect-api way to find out if a user who has granted email permission has given his normal email or the fb proxy one? I haven´t found anything and don´t like the idea of using a regex pattern to determine the @proxymail.facebook.com part. What if fb changes the address format? Any help is appreciated! ...

General sense of how to do this with Facebook Connect

Hi, I am working on a web site that lets members sign up for classes... and I'd like to implement Facebook Connect in some way so that when someone enrolls in a class, it can pop up a window and say "hey, 12 of your friends are also enrolled!" and show the friends. I know this is possible, but in looking at the Facebook Connect docs, it...