0.03
No commit activity in last 3 years
No release in over 3 years
There's a lot of open issues
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
 Dependencies

Runtime

>= 0
 Project Readme
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