Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

facebook_chat

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

facebook_chat

  • 0.0.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

FacebookChat

FacebookChat is a gem which send a chat message to any facebook friends using Facebook Chat API. It makes you to handle a facebook chat message more easy. If you'd like to know about Facebook Chat API, please check Facebook Developer's page.

Installation

Add this line to your application's Gemfile:

gem 'facebook_chat'

And then execute:

$ bundle install

Or install it yourself as:

$ gem install facebook_chat

Usage

Preparation

Your facebook application should have xmpp_login permission to send a chat message. Please set xmpp_login permission in your application before go to next step.

Configuration

First, you have to configure to Facebook Chat API Client.

If you are developing on Rails, you might want to place following code to config/initializers/facebook_chat.rb.

require 'facebook_chat'

FacebookChat::Client.configure do |config|
  config.api_key = '****' # your facebook application's api key
  config.host = 'chat.facebook.com' # you can omit this line. Default host value is 'chat.facebook.com'
end

Send a message

And then, create FacebookChat::Client instance and call send method.

access_token = '****' # message sender's facebook access token
cilent = FacebookChat::Client.new(access_token)

to = '1000000000' # facebook user id you want to send a message
client.send(to, "hey, what's up?")

you can notice that a message is sent to the user who have id 1000000000.

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

FAQs

Package last updated on 22 Oct 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc