Skip to content

kissrobber/xmpp4r_facebook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

facebook chat(xmpp). X-FACEBOOK-PLATFORM SASL for ruby xmpp4r

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages