Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.