* 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...
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...
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 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.
...
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...
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...
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...
I'm trying to make an API call to Facebook to retrieve my status and display it on my website.
...
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.
...
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...
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
...
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?
...
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?
...
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&drop>}
{meta}
{title nil}
{iframes}
{frames}
{links}
{forms}>
which is.. kinda empty! Is there some problems with these iframes ...
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...
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...
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...
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.
...
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...
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...