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.
This gem allows you to authenticate against facebook and then make Graph API calls from ruby
The goal here is to delegate authentication to Facebook and retrieve a
secret OAuth2 access_token
. In other words, you want your web
application to be able to send a user to facebook, and have facebook
figure out whether or not they are who they say they are.
Facebook uses OAuth2 to authenticate users on thirdparty application's behalf. This gem handles the Oauth2 "handshake" with facebook. Basically, here are the steps:
Register you application with Facebook and get your API Key and API Secret
Create Facebook::OAuth object like so:
@oauth2 ||= Facebookdp::OAuth.new(your-api-key, you-api-secret, 'https://graph.facebook.com', facebook-callback-url)
The facebook-callback-url
argument should be something like
http://yourwebapp/facebook-controller/handle-facebook-response
. If
you don't specifiy a facebook-callback-url, it will default to
http://localhost:3000/facebook
. So you might want to just stick a
controller there when doing development for easy testing.
Next, call @oauth2.authorize_url
. This should give you a url like
this:
https://graph.facebook.com/oauth/authorize?client_id=YOUR_APP_ID&type=web_server&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Ffacebook%2Fcallback
Now it's time to trade the client_id
for a Access Token (note the
http param named client_id
in the authorize_url
). Your web app
should redirect the user's browser to the authorize_url
. Facebook
then prompts for a username and password. The user enters a username
and password.
Tip: During development, sometimes it helps to simply copy and paste the authorize_url
into your
browser.
5a) If the user enters invalid credentials, they'll be redirected back
to the facebook-callback-url
specified above. The request will
include a http param named error_reason
so your application can
handle the invalid username and password error appropriately.
5b) If this is the first time the user has ever logged into your application, they'll be prompted by Facebook whether to allow or deny your web application. After they choose to allow or deny, they'll be redirected to the facebook-callback-url specified above.
facebook-callback-url
you specified above. For example, something like thisYour web appilcation should parse that access code and hang onto it!
Next, you trade the access code for an access_token
like so:
@oauth2_token = @oath2.get_access_token @oauth2_token ||= @oauth2.get_access_token(the-access-code-you-parsed-and-saved)
First, you have to do the whole OAuth2 song and dance as described above. Once you do that, you should have a OAuth2 access_token
for the user. You can then use the token to create an instance of the Facebookdp::Base class.
@client = Facebookdp::Base.new(@oauth2_token)
Then, simply use the @client
instance to make Facebook Graph API
calls on the user's behalf. For example, you can get all the users
friends:
friends = @client.friends
FAQs
Unknown package
We found that facebookdp 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.