facebook-connect

Deleting Cookie

I was using the code below to delete cookies and everything worked fine. A few days ago, I began hosting the code somewhere else and it will not longer delete the cookie. Any ideas? if( $_COOKIE ) { foreach( $_COOKIE as $name => $value ) { $params = session_get_cookie_params(); unset($_COOKIE[$name]); ...

django-facebookconnect extended permissions

I am wanting to add some extended permissions to django-facebookconnect namely "email". After looking through the code I see that the actual connect is managed in javascript. So, I thought that something like this might work {% load facebook_tags %} <script type="text/javascript"> FB_RequireFeatures(["XFBML"], function() { F...

rails facebook connect and new application settings editor

Hi Everyone, until lately my application was working great with facebook connect. When you click on the "login with facebook" button the popup shows up, and clicking allow does half it's job: Facebook connects to my secret controller that I set up in the Post-Authorize Callback URL but instead of closing the popup and redirecting the us...

facebook user validation

Hi, I have an Iphone app. I am using facebook connect when for user authentication. I am sending score and fbuser Id to my web server. How can I validation this user valid or not? Thanks ...

Is there Facebook search box component?

I would like to use exactly same search box in my app, (to search ppl and saw her profile picture). Is there any good example how to do it? ...

Handling facebook connect and registered users

How to people go about managing users when some people login via facebook connect (or openid etc) and other members who actually register on the website. From what I understand, those logging in via facebook connect will have limited data like just their username correct? You won't have even their email addy. ...

Using authlogic, asking for email, should facebook's login window redirect a new application to it's own window?

When I ask for email permissions, my facebook popup window redirects to my site in its own window, whereas if I do not ask for email permissions the facebook window closes and my site redirects as normal... so asking for email seems to make something go wrong. I see this in myserver logs: makes this appear in my server logs: Completed ...

Facebook Connect for iPhone - Request to like a page

I'm not sure if this is possible but using Facebook Connect for iPhone, can you request to like a facebook page? If this means showing the FB dialog box that is fine! Many thanks ...

Facebook Connect: "post-add URL" being loaded in popup window. How can I stop?

I have a Facebook connect setup which signs the user in using FB.Connect.requireSession(), and gets some permissions using FB.Connect.showPermissionDialog() The problem: when the user adds my application for the first time, instead of closing the FB Connect window and setting cookies, it loads the "post-add URL" in the FB connect popup ...

How to Use Facebook as my Sites Login?

Hey, I have some doubt, about FB Log in system integration in my website , how can i use it?? Like am i need to save anything in my db, more over how can i get a sample code in PHP? ...

Strange black square when loading Facebook Connect for iPhone

Hey all, I've been playing with Facebook Connect for iPhone recently and got it working great. Except for one thing. As you can see in the image (which shows just before loading the log in screen), there is a hideous black area on the right hand side. Do anyone know why this happens and how to fix it? I can only think that I may have t...

Use mixed authentication with Asp.Net MVC (Forms, FB connect, twitter, openId)

Hi, I'm creating a new site and I want the users to be able to use several ways to sign in, basically the users should be able to create a new user on my site OR use Facebook connect OR use Twitter's account to log into the site. I have seen several tutorials on using one of these methods, what I want to know is what do you think is th...

Facebook Connect Bug - JavaScript Refresh

Facebook Connect has a recent bug that is causing the permissions pop-up window to not close and refresh the parent window as it is designed to do. Instead, after approval by the user it attempts to load the page directly in the pop-up window which is an awful user experience and really hurting our registrations. You can see the bug by r...

How could I search people via connect-js?

For example i would like to achieve https://graph.facebook.com/search?q=mark&amp;type=user , and I am trying: FB.api('/search?q=mark&type=user', function(response){ for(x in response) alert(x); }); } Please, help! ...

Facebook Connect Bug? (Post-Authorise URL Being Put in Window Instead of OnLogin Callback)

Hi Guys, I have a ASP.NET web site which uses Facebook Connect for authentication - using the JavaScript API and the Facebook Connect FBML Button. Here is the regular flow of events for a "Connect with Facebook" button click, when user isnt logged into Facebook. Dialog is shown requesting user to login Dialog requests permission from...

Problem with Old Facebook JavaScript SDK

I have an issue with the old sdk. Whenever I try to authorize a new user I get redirected to the home page of my app in the iframe. However, after I close the iframe and refresh the page, I can easily authorize a user. But whenever I delete the application from my facebook account and try to authorize it, I'm back to the previous proble...

Facebook chat - X-FACEBOOK-PLATFORM authentication

Hi guys, I want to build an XMPP client on android, I've got it running perfect with authentication using Digest-MD-5, however when I try to convert it to X-FACEBOOK-PLATFORM it keeps failing. Could someone tell me why? I've attached the source code. I know it's something really small but I can't seem to figure it out. The source can ...

Is Facebook Connect a practical way of importing users? How does it do it?

Those are basically the questions because I saw you need to create a new table for users that log using "Login with Facebook Connect". Please don't reply with fb connect developers website because I've been there already and I've already read about the "wonderfully unsafe" features of this API .Apparently I haven't fully understood it. I...

Facebook API get events CREATED BY friends

Hi! I am developing facebook app which needs to retrieve events created by some of my friends. Standard SQL query would look like this: NSString *fql1 = @"SELECT " @"eid, name, tagline, id, pic_small,host, description, start_time, creator " @"FROM " @"event " @"WHERE " @"creator = 1111111111 OR creator = 2222222222 OR creator = 33...

Facebook Connect Cookie/Session issue

Hi Folks I am using the following 2 API's to create a facebook connect but having issues with the sessions being picked up the the PHP SDK. I have downloaded the latest facebook-connect-js & facebook-php-sdk Here is my initial FB.init connect using the JS no problem ie. <script> // initialize the library with the API key FB.init({...