facebook-connect

Is it possible to avoid loading XFBML javascript when using Facebook Connect API features

The dependency graph of the Facebook libraries described in the FB_RequireFeatures documention specifies that XFBML is dependent on Connect, but not vice versa. The suggested usage they give is something like this to fire an event handler for a login button. FB_RequireFeatures(["Connect"], function() { FB.init("API_KEY", "xd_receive...

Restful authentication + Facebook connect - User model redesign

I have a site with Restful authentication as authentication plugin. I need to integrate Facebook connect. Facebook does not provide email address for the user (maybe only if user agrees if), and of course does not provide a password. The main issue is that the User model has a lot of validates_** on those 2 fields (from Restful authent...

Custom login form to Facebook on an iPhone app.

Hello. I'm trying to make an application that can connecto to facebook. I've found Facebook Connect for iPhone and I don't like the login form that it has. Is there any way to make a custom login form? Is there some api functions to call to login an user on Facebook? Thank you. ...

FB Init - reloadIfSessionStateChanged is not working

Can some one please tell me what is wrong with below code? After I login it doesn't do anything: neither reloading the page nor setting the login FB cookies. It's simple code but I'm not sure what I'm doing wrong. <script type="text/javascript" src="http://static.ak.connect.facebook.com/js/api_lib/v0.4/FeatureLoader.js.php"&gt;&lt;/sc...

Facebook PHP API Calls

Hello, So I simply want to add my current facebook status to my personal website. I have been looking at tutorials and other posts about fb and fb connect, but I am still confused. Is there anyway to do this with simple REST calls? Like twitter or flickr? From what I understand I dont need FB connect because I am just getting my own ...

Facebook | redirect error

I have facebook connect button on a page of my site and I want user to redirect to a page after a successful login: here's the code snippet: </script> <fb:login-button onlogin="facebook_onlogin();"> </fb:login-button> <script type="text/javascript"> FB.init("API_KEY", "http://myip/facebookapp/xd_reciver.html/"); function facebook_onlog...

How to allow users who don't accept a permsToRequestOnConnect : publish_stream

I use FB connect and have a permsToRequestOnConnect : publish_stream set. I'd like to grant users access to the site even if they click "Don't allow", but this doesn't seem to work. I'm using Facebooker with Authlogic, and when users hit "Don't allow" it just doesn't log in and stays on the same page. ...

Facebook friends.getLists failing

Hi all, I'm trying a simple request on Facebook to return all my friend lists. I'm trying this in Facebook's test console, as well as through an iPhone app i'm working on. friends.getLists (also alternatively through FQL) SELECT flid, name FROM friendlist WHERE owner=4810796 I am currently logged in, so using that number should b...

Facebook API non-interactive authorization/login

Hi, i'm trying to build a facebook API client using python, code follows: import os import urllib2 import urllib import cookielib import hashlib import json USER = '' PASS = '' LOGIN = 'http://www.facebook.com/login.php?login_attempt=1' HOST = 'http://api.facebook.com/restserver.php' API_KEY = 'eca5c767f0e5b65942419574374c34a4' SECRET...

Is there an open source Wordpress plug-in to implement Facebook/Twitter/OpenID/... authentication?

Possible duplicate: What’s open-source commenting system are available? Hi, I'm looking for a way to implement Facebook/Twitter/OpenID/... authentication on my WordPress blog. I have found plugins for Twitter, plugins for Facebook, plugins for OpenID.. but I'm afraid integration of all thos plugins will be tough. Also, I have f...

Adding Facebook iPhone SDK to Project = 102 error and build failed

As far as I can tell I've followed the instructions perfectly ... and yet I am getting 102 errors and build failed when I attempt to build my iPhone application project in XCode. I'm using XCode 3.2.2. What am I missing??? This is driving me mad! * UPDATE * Ok ... I was able to get this working by doing the following: Double-click...

Facebook events api: Event member (FQL)

I am fetching the event members for facebook events. Till yesterday I was getting the proper counts of members of an event. But suddenly the counts have following issues: For lot of plans on every consecutive request, I am getting random number of members. Strange issue. Seems facebook servers are not synced properly or something simil...

Publishing news feeds automatically

Hello, I have a website which generates hourly updates to users. I want to allow these updates to show up as News feeds in Facebok. I opened a Facebook Connect application. Through my site I receive the extended persmission to post news to the users' news feeds. My question is can I automatically post news feeds to these users without ...

Installing pyFacebook on Google App Engine

Hello, I am trying to build a facebook application with GAE. I added the facebook.py (renamed it from init.py) to my directory and then i am trying to import it. However, I get several compilation errors such as: class AuthProxy(AuthProxy): "" undefined variable: Authproxy"" and so on... How should I setup this script? Thanks Joel...

Facebook - finding users by name

Hello Guys, I'm very new to facebook and wanted to know if this is even possible to do with facebook API. If a user searches for a name on my website - say "Jamie Smith" - I want to pass this name to facebook and find all users that match that name - so if I can get back their photo and name to display on my site - so users can identif...

Facebook Like Button XFBML comment not working

Update: Read the comments to the item marked as the answer below for the full answer. I am implementing a Like button from Facebook per this document: http://developers.facebook.com/docs/reference/plugins/like I am using the XFBML version so that users can add comments when they click on the Like button. I have imported the Facebook Ja...

Facebook Graph API and Django

Hello, I am curious if there is any article/ library / anything useful that is built for the newly announced Facebook Graph API. I am planning to use it for a Python/Django project. ...

In Facebook: How to get User's list_ of_friends_ ID when User is offline[not Sign In].

Hi All In Facebook: How to get User's list_ of_friends_ ID when User is offline[not Sign In]. We are Integrating facebook application in our website.Our website development in Java's GWT[Googlw Web Toolkit] FrameWork. We are refering "Gwittit" sample codeWe open facebook account for our website and want to show all users[friends] p...

How to get Facebook share behavior with Facebook Connect on iPhone

With the standard share at http://www.facebook.com/sharer.php one only needs to specify a URL. Title and thumbnail are automatically pulled from the web page (perhaps with the help of meta tags). With Facebook Connect (I am using the iPhone SDK), I need to supply everything explicitly (URL, title, caption, description, images, etc.). ...

Facebook connect - api_client->users_getInfo throws error Cannot use string offset as an array

Hey guys I have this piece of code which works 90% of the time: $user_details=$fb->api_client->users_getInfo($fb_user, array('last_name','first_name','proxied_email')); $firstName=$user_details[0]['first_name']; But sometimes I get this error: Fatal error: Cannot use string offset as an array for line $firstName=$user_details[0]['...