facebook

facebook/flash security error

* Security Sandbox Violation * SecurityDomain 'http://apps.facebook.com/feline-frenzy/modelstest/' tried to access incompatible context 'http://b.static.ak.fbcdn.net/rsrc.php/z71HX/hash/4h1ls3l8.swf' Getting this error, notice that it does not say that a swf is trying to access the url but my url is. Inside my swf I have essentially rem...

Facebook connect, FBML: How do i get the user id?

I have a dead simple Facebook connect app, that really doesn't do much besides getting the name and profile picture from the user that has connected with my website. But in order to show other users the profilePicture and name of the user taken from facebook i need to store the facebook profile id in my own database for my own renderings...

Facebook API's require_login to work with CodeIgniter

Currently if I use facebook's require_login, it appears to go into an infinite loop of appending to the url. All of my controllers inherit from a FB_Controller that upon construction does: $this->facebook = new Facebook($this->API_KEY, $secret); $this->uid = $this->facebook->require_login(); //Causes infinite loop! I had to explicitly...

How to Facebook like newsfeed?

How can i impelement a Facebook NewsFeed like feature in my PHP based community application? For example "X user uploaded a new photo, Z attending to a event". Fetching all this data from different tables consumes too resources. Thanks. ...

Facebook Share button encoding problem

Hi all! I am trying to make a Facebook share button on my site. Everything goes well except Facebook garbles non-ascii symbols obtained from meta tags. For example: I am sharing a page with URL http://example.com/facebook/. The page at http://example.com/facebook/ has the following meta tags inside its HTML: <head> ... <meta http-equi...

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...

Is it possible to retrieve Facebook status using jQuery?

I'm trying to make an API call to Facebook to retrieve my status and display it on my website. ...

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. ...

FBJS-BRIDGE , Stopped working since yesterday?

Hi, I have a facebook app, which works with fbjs/flash/python. From yesterday I have been getting the following security error. *** Security Sandbox Violation *** SecurityDomain 'http://apps.facebook.com/feline-frenzy/bridgetest/' tried to access incompatible context 'http://static.ak.fbcdn.net/rsrc.php/z71HX/hash/4h1ls3l8.swf' While...

Facebook check if user is logged in via connect

Hi there. How can we render stuff, like profile picture, only if user has connected on your site via facebook connect? Is there any tag that could resolve this? hi was trying the following XFBML tag, but it didn't worked out so far. <fb:container> thanks ...

Is it possible to use Twitter and Facebook APIs on J2ME platform?

I googled and I can't find it is possible, someones said that j2me don't support REST communication or there are problems with login. Is it possible? ...

Social Data API

I'm wanting to build an app that lets you input your name/date of birth/location, and searches the web for public data of others who have something in common with you. The idea is to then create an infographic with this data, i.e. Average Age of John Smith: 48 Any suggestions as to what api's/techniques I could use to do this? ...

ruby mechanize in Facebook

I'm trying to click the Settings button on the home page, but when I do I get this page back: #<WWW::Mechanize::Page {url #<URI::HTTP:0x1023c5fc0 URL:http://www.facebook.com/editaccount.php?ref=mb&amp;drop&gt;} {meta} {title nil} {iframes} {frames} {links} {forms}> which is.. kinda empty! Is there some problems with these iframes ...

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 Application Using CodeIgniter

I am building a Facebook app using iframe rendering. I want to use CodeIgniter for the back end and am wondering what all the settings should be set to for CodeIgniter and Facebook to get along. Specific settings I am wondering about are: Facebook's canvas callback url (should it include the default controller and function)? config.php...

Flash External Callback Error!

I'm trying to acces a swf function from javascript using External Interface given by adobe and I get the following error. SecurityError: Error #2060: Security sandbox violation: ExternalInterface caller http://media.varheroes.com/flash/flashtest.swf cannot access http://apps.facebook.com/feline-frenzy/flashtest/. at flash.external::Exte...

BrowserSession.LoginComplete Event Not working even after the SuccessFul Login On FackBook Through SDK

When i login to the facebook through the Browsersession.Login() , its work fine but BrowserSession.LoginComplete Event not working During this Period. Can any body suggest me why this thing Happening in my Project. ...

Help with FQL and List (of T)

Hi I am using the Facebook Toolkit and making a request using FQL.Multiquery. I am using the following code which returns the correct data: Dim query1 As String = String.Format("SELECT post_id, actor_id, target_id, message FROM stream WHERE source_id in (SELECT target_id FROM connection WHERE source_id={0}) AND is_hidden = 0", FBuserI...

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...