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.
Django social networks API abstraction layer. Application allows to use family of social network API applications, such as:
This application provides access tokens from different storages.
Context of API calls. You can provide static tokens here in format {'facebook': {'token': '...'}}
SOCIAL_API_CALL_CONTEXT = {}
You can temporary override this settings using context manager override_api_context
:
from social_api.api import override_api_context
with override_api_context('facebook', context_key=context_value):
api.call(..)
Available storages, you can add your own storages inherited from social_api.storages.base.TokensStorageAbstractBase
SOCIAL_API_TOKENS_STORAGES = {
'social_api.storages.oauthtokens.OAuthTokensStorage',
'social_api.storages.social_auth.SocialAuthTokensStorage',
}
(python-social-auth)[https://github.com/omab/python-social-auth] is an easy-to-setup social authentication/registration mechanism with support for several frameworks and auth providers. Crafted using base code from django-social-auth, it implements a common interface to define new authentication providers from third parties, and to bring support for more frameworks and ORMs.
Mapping settings between provider codes {'social_api': 'social_auth'}
SOCIAL_API_SOCIAL_AUTH_PROVIDERS_MAP = {
'vkontakte': 'vk-oauth2',
'instagram': 'instagram',
'facebook': 'facebook',
'odnoklassniki': 'odnoklassniki-oauth2',
'twitter': 'twitter',
}
If you want to make a API call by exact user, use override_api_context
with social_auth_user
argument:
from social_api.api import override_api_context
with override_api_context('facebook', social_auth_user=user):
api.call(..)
(django-oauth-tokens)[https://github.com/ramusus/django-oauth-tokens] is application to make silent oauth authentication from bunch of user credentials and collect access tokens. All user credentials could be stored in settings or database and for each of them application request access token via Oauth mechanism. It's allowed to tag any of user credentials.
If you want to make a API call with access token of tagged user credentials, use override_api_context
with
oauth_tokens_tag
argument:
from social_api.api import override_api_context
with override_api_context('facebook', oauth_tokens_tag='tag'):
api.call(..)
FAQs
Django social networks API abstraction layer
We found that django-social-api 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.