Expansion XMPP4R to authenticate with Facebook Connect in Ruby ====================================== Install: ====================================== gem install xmpp4r_facebook ====================================== Sample code: ====================================== require 'xmpp4r_facebook' id = '-<sender user id>@chat.facebook.com' to = '-<user id>@chat.facebook.com' body = "hello, Im not spam!" subject = 'message from ruby' message = Jabber::Message.new to, body message.subject = subject client = Jabber::Client.new Jabber::JID.new(id) client.connect client.auth_sasl(Jabber::SASL::XFacebookPlatform.new(client, '<App ID/API Key>', '<Access Token>', '<App Secret>'), nil) client.send message client.close Ensure your access token has `xmpp_login` permission. Check at https://developers.facebook.com/tools/debug (I want to work in Silicon Valley as a software engineer.) Copyright (c) 2010 kissrobber, released under the GPL license
Project
xmpp4r_facebook
Expansion XMPP4R to authenticate with Facebook Connect in Ruby
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Pull Requests
Development
Dependencies
Runtime
>= 0
Project Readme