
Security News
Follow-up and Clarification on Recent Malicious Ruby Gems Campaign
A clarification on our recent research investigating 60 malicious Ruby gems.
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.
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
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.
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
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
.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that facebook_chat demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.
Research
/Security News
A malicious Go module posing as an SSH brute forcer exfiltrates stolen credentials to a Telegram bot controlled by a Russian-speaking threat actor.