facebook

simple fbml fb:login-button is not rendering in ie6

The following codes works in FF and Chrome, but IE6 does not render the connect button. What am I missing here? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml"&gt; <head> <title><...

Getting Permissions error while using stream.publish method of facebook API

Hi I want to publsh a post on user's wall but am getting this "permission error" error code 200 when trying to use stream.publish method of facebook api...i hve requested for extended permissions as: http://m.facebook.com/login.php?api%5Fkey="+API_KEY&amp;....&amp;req_perms=read_stream,publish_stream,offline_access but when i make call...

Facebook connect - after login popup hangs in infinite loop.

Symptom: After connect popup window opens and user enters username + password. The popup turns blank and stays open. There is no call to the login function (but a page refresh shows the cookies are set and user is actually logged in). I debugged the code and found that the xdcommReceiver.js file is stuck in endless loop in the function...

display webpage inside other webpage without frames

Hi, i'm looking for a way to display a web page inside a div of other web page. i can fetch the the webpage with CURL, but since it has an external stylesheet when i try to display it, it appears without all his style properties. i remember facebook used this technique with shared links (you used to see the page that was linked with a fa...

Facebook Connect FBML not rendering HTML?

As I understand it, Facebook's FBML should render html. But mine isn't. Here is my source code after viewing the page in the browser: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com...

how to call showPermissionsDialog() in php (facebook api)?

I was reading over the documentation yet I could not figure out how to call Facebook.showPermissionsDialog() in php include_once './facebook-platform/php/facebook.php'; $facebook = new Facebook(my api keys go here); $fb_user = $facebook->require_login(); /*this is where i want it to go */ $facebook->api_client->stream_publish("test"); ...

Feed story or links for facebook fan page ?

hi all, i just wonder between links and feed story which is better to distribute content on facebook fan page ? personally my vote is to links, since there are api release to get the links stat now and feed story now has been control for only 1 action link. ...

getting extended permissions for mobile application on facebook

how to get extended permissions like publish_stream on mobile...i am first calling http://m.facebook.com/login.php? and after when the login is succesful i am calling http://www.facebook.com/connect/prompt%5Fpermissions.php?api%5Fkey=YOUR%5FAPI%5FKEY&amp;ext%5Fperm=publish%5Fstreamnext=URL%5FAFTER%5FAPPROVAL&amp;cancel=URL%5FIF%5FCANCE...

Facebook Developer Toolkit - Publishing a Message

Hello, I am trying to use the Facebook Developer Toolkit (http://facebooktoolkit.codeplex.com/) to publish user messages from my .NET applicationn. I have a user id for a facebook user. My question is, how do I publish a message to this user's Facebook stream? Currently, I written have the following code: ConnectSession session = new...

Unable to publish on user's facebook wall through blackberry application

I want to publish a post to user's wall..for this first i am making user to log in and getting the session id also...but in order to publish i need the user to grant me publish_stream permission..so immmediately after i am obtaining auth_token by capturing url of the login success screen, i am making call to http://www.facebook.com/conne...

workaround: site is www.site.com code incl. document.domain='site.com'

A customer site that I cannot change has the line 'document.domain = "site.com"; while the site is at www.site.com. The effect is that FB connect window login gets stuck after submitting username+password. Firebug shows its in infinite loop inside dispatchmessage function, which gives perpetual exception: Error: Permission denied for ...

Facebook Platform error: "Object cannot be liked"

I'm working on a Facebook Application that generates wall posts. In testing these posts, I've discovered that the Facebook Platform action of "liking" a post is failing. The specific error message is Object cannot be liked Unable to like this object because it is not accessible (it may have been removed or you may no longer...

How to refresh the dialog box in Facebook after submit (Rails, Facebooker, FBML)?

Hi, I am using Rails (Facebooker). This is for Facebook apps (FBML) and to keep it simple, let's assume it's a student registration system. In my student page (displaying their photo, name, grade etc), I have an 'edit' button. Clicking that button, will display a FB-dialog to edit their details. My aim is simple. I want the user to be...

microsoft facebook sdk

Hi, Microsoft recently announced their Facebook SDK. http://msdn.microsoft.com/en-us/windows/ee388574.aspx Has anyone tried using it with ASP.NET or ASP.NET MVC ? Would like your opinion. Any gotchas that developers need to be aware of ? Michael ...

Getting Facebook Details

Hello All, how can i get a facebook user's info like name, country, etc without making him login using fb connect, etc if i already know his facebook id? I mean can i use the php facebook client to get those details without prompting for login if i already know the facebook id? Thanks in advance :) ...

Facebook notification api

Hello guys, here i am facing a problem when i am using facebook notification.sendEmail api. its generating the incorrect signature error i don't what happened there so please help me. here is code to which i used to generating the signature. Private Function GenerateSignature(ByRef Parameters As NameValueCollection) As String ...

jQuery: Facebook iframe app html inaccessible

Why cant I access the embedded app elements? Looking at the HTML, the app is put inside a div but when I try to find the div contents, e.g. $("input").get() I only see input element of FB, not the app. I injected jQuery after the page load with FireQuery plugin. How can the HTML looks fine but cannot be traversed with jQuery? ...

Getting information about a Facebook Page via API but without a session_key

I'm going to create a Facebook application which get informations (name and *page_url*) about Facebook page from his *page_id*. So i went to the Facebook Wiki and i found this API method which sounds good at first look : http://wiki.developers.facebook.com/index.php/Pages.getInfo My only wish was that i wouldn't pass a session_key para...

Graphs in a Facebook App

I've been messing around a bit with a Facebook application for a while now, which is using FBML. A need has arisen to integrate graphs to display data. From what I can tell my options would be one of the following: Find a Flash Graph that doesn't require a JavaScript library to work Convert the application to an IFrame application, and...

Facebook iFrame app and JS: how do I get friends through JS Client?

Hi there, I've gotten the FB JS client library to work on my iframe-based application (cool stuff, I must say), but now I'd like to retrieve a list of friends from Facebook, in order to populate an AutoComplete field (similar to the friend-selector), but without the additional iframe that would be generated if I used the serverfbml tag. ...