facebook

Authorization facebook (require login) with cakephp cause looping auth key session

Hi, im developing facebook iframe application with cakephp. My problem is i need facebook authorization soon as user visiting homepage. i'm put this code $user = $this->facebook->require_login(); in app_controller before filter method, seems its working with user authorization. but after user authorize my application is leaving facebook...

django facebook login-button.

We are using django and django-socialauth , and my view is facebook/login what is the facebook login-button for django, thanks ...

Facebook Connect button question - please help.

<fb:login-button onlogin="window.location = '/custompage.html';">Connect</fb:login-button> That's currently my code for users to log in to my site. It's in FBML. It will pop up a box, the user then logs in. And then, it closes the new window, followed by a redirect to "custompage.html". Now, I would like to manually render my button ...

Is it just me...or is "Facebook Mobile Web" only for PHP?

http://wiki.developers.facebook.com/index.php/Mobile I use Django/Python as my mobile website. Am I missing something? ...

How do i run php code in fan page?

Hello, Is there a way i could run php code in facebook fan page. Basically i want to show the producsts from this site: http://ohlalashopping.co.uk/ on one of the tabs of fan page. I would love to see any possible solutions to achieve just that. Edit: Based on the answers provided, i just wanted to ask one more thing: How do i add ...

Facebook - max number of parameters in “IN” clause?

In Facebook query language(FQL), you can specify an IN clause, like: SELECT uid1, uid2 FROM friend WHERE uid1 IN (1000, 1001, 1002) Does anyone know what's the max number of parameters you can pass into IN? Thanks. ...

Facebook Connect: Send email to proxy address?

When users connect to my site with facebook connect i use this code to get their proxied email: $user_details=$fb->api_client->users_getInfo($_SESSION['fb_uid'], array('last_name','first_name','proxied_email')); $email = $user_details[0]['proxied_email']; It works fine, i get strange-looking-emails ending with @proxymail.facebook.com....

Pulling Facebook status with jQuery returning null

I am trying to pull the status updates from a Facebook Page. I have the url for the feed: http://www.facebook.com/feeds/page.php?format=rss20&amp;id=141941024749 Putting that into the browser returns the feed, however when I try to pull the same thing via ajax I get null. Here is the jQuery code I am using. $.ajax({ url: "http:/...

Facebook Connect API : Data.defineAssociation - How to use it?

Hello, Im using the Facebook Data Api and I want to create a Association. For this I have to use Data.defineAssociation and I want to know, how to set the parameters into a NSDictionary. Im using the Facebook iPhone Sdk: NSDictionary *params = [NSDictionary dictionaryWithObjectsAndKeys: // parameters ??? , nil]; [[FBRequest requestWithD...

Upload a photo to facebook using Corona?

Is is possible to upload a photo to facebook using Corona? ...

GWT Facebook fb:serverfbml problems

Hi, I have a app that is running on appengine and its written with gwt, the problem is that the fb:serverfbml content takes sometime to load and it doesnt show in any IE. I have the FeatureLoader.js.php import on top and window.onload = function() { FB_RequireFeatures(["XFBML"], function() { FB.Facebook.init(APPKEY, "/xd_receiver.htm...

spotty image loading in FBML app?

I have an FBML app I built which is working pretty good but the images are loading really spotty, it's just a simple image tag like this: <img src="http://c0200801.cdn.cloudfiles.rackspacecloud.com/Surfboard83_thumbnail.jpg"/&gt; The images are hosted on Cloud Files CDN which works great for every website I use them for. But sometime...

Facebook <fb:profile-pic></fb:profile-pic> How to open in a separate window?

This Facebook tag will show the user's logo, and allow the user to link to their Wall. the problem is that it replaces the current page with the user's wall, which requires a back button be clicked to return to the page. How can I force it to open a separate window? Jeff ...

how do i login facebook via facevook connect and django.

my request.__dict__ is : ['session', 'openid', '_post_parse_error', 'openids', '_cached_user', '_files', 'facebook', '_post', '_get', 'META', 'environ', 'path_info', 'LANGUAGE_CODE', 'path', '_cookies', 'method'] my request.facebook is : ['feed', 'status', 'marketplace', 'uid', 'stream', 'locale', 'auth_token', 'is_session_from...

Adding More Than One App To Fan Page

Hello, I have created this fan page http://www.facebook.com/pages/ohlala/327385737341 and added an application on tab "Special Offers". I just wanted to know if it is possible to add more than one app to the fan page? Can't see any option like i did for the first app. Thanks ...

PyFacebook: Facebook() instance has no stream methods

I need to update my Facebook Fan Page in a django app so I have this code: import facebook from django.conf import settings def login_facebook(): fb = facebook.Facebook(settings.FACEBOOK_API_KEY, settings.FACEBOOK_SECRET_KEY) fb.session_key = settings.FACEBOOK_SESSION fb.secret = settings.FACEBOOK_SECRET_KEY fb.uid = se...

Qt client for Facebook

I would like to use Facebook api (http://wiki.developers.facebook.com/index.php/API) in my Qt Application. I don't want to use WebKit. Is it possibile to use QNetwork only? Is there any example on how to do it? ...

Facebook extended permission dialog cut-off - not showing allow/disallow button

Using js inside an iframe to ask for extended permissions: FB.ensureInit(function() { FB.Connect.showPermissionDialog("publish_stream", submit_post); }); the dialog pops up, but the lower half of the dialog is hidden and the user can't possibly click allow (or disallow for that matter) has anyone seen this? what co...

how to get last x facebook message + answer with php??

Hi, Is there a way to get my latest facebook message +comments to show on my own website? ...

FBJS/FBML: Display a textbox on click of radio button

I want to use FBML as a canvas and would like to display a textbox on click of radio button. Can anybody out there help me out on this? e.g. if a user selects other as option it should make appear a text box. Is it possible? how? I'm eager to learn more from the responder. ...