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.
geventhttpclient-facebook
Advanced tools
Port of the original facebook sdk <https://github.com/pythonforfacebook/facebook-sdk>to use geventhttpclient <https://github.com/gwik/geventhttpclient>This client library is designed to support the Facebook Graph API and the official Facebook JavaScript SDK, which is the canonical way to implement Facebook authentication.
This fork is still in development: TODO: put_photo isn't working yet. shortcuts out of GraphAPI class aren't tested
This client library is designed to support the Facebook Graph API
_ and the
official Facebook JavaScript SDK
, which is the canonical way to implement
Facebook authentication. You can read more about the Graph API by accessing its
official documentation
.
.. _Facebook Graph API: https://developers.facebook.com/docs/reference/api/ .. _Facebook JavaScript SDK: https://developers.facebook.com/docs/reference/javascript/ .. _official documentation: https://developers.facebook.com/docs/reference/api/
Basic usage:
::
graph = facebook.GraphAPI(oauth_access_token)
profile = graph.get_object("me")
friends = graph.get_connections("me", "friends")
graph.put_object("me", "feed", message="I am writing on my wall!")
Photo uploads:
::
graph = facebook.GraphAPI(oauth_access_token)
tags = json.dumps([{'x':50, 'y':50, tag_uid:12345}, {'x':10, 'y':60, tag_text:'a turtle'}])
graph.put_photo(open('img.jpg'), 'Look at this cool photo!', album_id_or_None, tags=tags)
If you are using the module within a web application with the JavaScript SDK, you can also use the module to use Facebook for login, parsing the cookie set by the JavaScript SDK for logged in users. For example, in Google AppEngine, you could get the profile of the logged in user with:
::
user = facebook.get_user_from_cookie(self.request.cookies, key, secret)
if user:
graph = facebook.GraphAPI(user["access_token"])
profile = graph.get_object("me")
friends = graph.get_connections("me", "friends")
You can see a full AppEngine example application in examples/appengine.
If you have bugs or other issues specifically pertaining to this library, file
them here
. Bugs with the Graph API should be filed on Facebook's bugtracker
.
.. _here: https://github.com/pythonforfacebook/facebook-sdk/issues .. _Facebook's bugtracker: https://developers.facebook.com/bugs/
FAQs
Port of the original facebook sdk <https://github.com/pythonforfacebook/facebook-sdk>to use geventhttpclient <https://github.com/gwik/geventhttpclient>This client library is designed to support the Facebook Graph API and the official Facebook JavaScript SDK, which is the canonical way to implement Facebook authentication.
We found that geventhttpclient-facebook demonstrated a healthy version release cadence and project activity because the last version was released less than 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.