Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

CoffeeScript is a little language that compiles into JavaScript. Underneath all of those embarrassing braces and semicolons, JavaScript has always had a gorgeous object model at its heart. CoffeeScript is an attempt to expose the good parts of JavaScript in a simple way.

learn more… | top users | synonyms (1)

0
votes
1answer
109 views

Submitting a form with jQuery after an AJAX call to a Facebook Open Graph object

I've created a Facebook Open Graph object and action. It works very well and has been fully tested. The problem is that I want to submit a different form when the data is returned. Just to be clear, ...
0
votes
1answer
121 views

Node-Webkit Facebook integration

I am building a newsreader-ish desktop app using node-webkit https://github.com/rogerwang/node-webkit which is basically server and client at the same time. My Problem with the facebook API is the ...
0
votes
1answer
89 views

Facebook FQL Select Album by name

Is is possible to get a users photos from a specific album by specifying its name? I'm trying to only get the album called "mobile uploads". offset = 0 mobile = "mobile uploads" mobileUploads = ...
3
votes
1answer
320 views

Node.js hostname/IP doesnt match certificates altnames

I'm writing some node code to do a server side login to Facebook. I'm pretty close to having it completely functioning, but I am having troubles requesting the auth_code. I'm thinking it might have ...
2
votes
1answer
394 views

nodejs passport always going to failure URL

I am using passport to allow logging in through Facebook on my website. Everything seems to work just fine, but callback from Facebook's site always goes to the failureRedirect even though I get all ...
0
votes
1answer
335 views

Facebook JS SDK does not set cookie

I'm trying to implement Facebook authentication in our web app, with server side processing of the Facebook cookie. We use the JavaScript SDK to perform our login and set the cookie. Somehow, ...
0
votes
1answer
169 views

Facebook Post Request Not working

I am using the Facebook JavaScript SDK in my web app. The following function will be invoked when I click on a Facebook invite button facebookInvite: (e) -> e.preventDefault() FB.ui ...
1
vote
1answer
189 views

Facebook Javascript SDK difference between these events?

I am trying to figure out what the difference between these events are. They appear to behave differently between a local sinatra server and one deployed to heroku. They generally just behave ...
1
vote
1answer
204 views

Facebook FQL returning duplicate posts in query

I am trying to get the last 10 posts from a user's stream. For some reason my FQL query will return two of every post in succession. Here is my code, Pardon the CoffeeScript, method = ...
2
votes
1answer
209 views

Rails Rendering Javascript Files in the the View and Including Ruby Variables

I'd like to include this Coffee script code in the header of my application.html.haml but I don't know where to put it or how to include ruby objects. Question 1. How do I render and Javascript .js ...
0
votes
2answers
765 views

Coffeescript, the Facebook JS API and scope

I am using Coffeescript and am loading the Facebook JS api asynchronously, as they suggest in their documentation. Like so: #Load the FB api asynchronously (-> e = ...