Skip to content

Instantly share code, notes, and snippets.

@alFReD-NSH
Forked from naltatis/facebook-xmpp.js
Created October 1, 2011 08:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alFReD-NSH/1255786 to your computer and use it in GitHub Desktop.
Save alFReD-NSH/1255786 to your computer and use it in GitHub Desktop.
connecting to Facebook via node-xmpp
var client = new xmpp.Client({
jid: '-123456@chat.facebook.com', // where 123456 is the users facebook id
api_key: apiKey, // api key of your facebook app
secret_key: secretKey, // secret key of your facebook app
session_key: sessionKey, // users current session key
host: 'chat.facebook.com'
});
// you can find more details here http://developers.facebook.com/docs/chat/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment