معرفی شرکت ها


drf-firebase-token-auth-0.2.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Firebase token authentication for Django Rest Framework
ویژگی مقدار
سیستم عامل -
نام فایل drf-firebase-token-auth-0.2.1
نام drf-firebase-token-auth
نسخه کتابخانه 0.2.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Ron Heimann
ایمیل نویسنده ron.heimann@gmail.com
آدرس صفحه اصلی https://github.com/ronhe/drf-firebase-token-auth
آدرس اینترنتی https://pypi.org/project/drf-firebase-token-auth/
مجوز MIT
Firebase Token Authentication for Django Rest Framework ======================================================= Inspired by `garyburgmann/drf-firebase-auth <https://github.com/garyburgmann/drf-firebase-auth>`_ and based on `Rest Framework's TokenAuthentication <https://www.django-rest-framework.org/api-guide/authentication/#tokenauthentication>`_, ``drf-firebase-token-auth`` should be just what you need to enable client authentication using `Firebase Authentication <https://firebase.google.com/docs/auth>`_. How Does It Work ---------------- #. For each REST request, a Firebase ID Token is extracted from the Authorization header. #. The ID Token is verified against Firebase. #. If the Firebase user is already known (A record with the corresponding UID exists in the `FirebaseUser` table), then the corresponding local `User` is successfully authenticated. #. Otherwise, the unfamiliar Firebase user is attempted to be matched against a local `User` record by `email` or `username`. If no match exists, then a new `User` is created. Its `username` is assigned either to the Firebase email or UID (in case an email is not available). Finally, the newly created local `User` is successfully authenticated. Installation ------------ #. Install the pip package: .. code-block:: bash $ pip install drf-firebase-token-auth #. Add the application to your project's ``INSTALLED_APPS``: .. code-block:: python # settings.py INSTALLED_APS = [ ... 'drf-firebase-token-auth', ] #. Add ``FirebaseTokenAuthentication`` to Rest Framework's list of default authentication classes: .. code-block:: python # settings.py REST_FRAMEWORK = { ... 'DEFAULT_AUTHENTICATION_CLASSES': [ ... 'drf_firebase_token_auth.authentication.FirebaseTokenAuthentication', ] } *Note*: It's perfectly fine to keep other authentication classes as well. For example, you may want to keep ``rest_framework.authentication.SessionAuthentication`` to allow access to the browsable API for local users with password. #. Configure the application: .. code-block:: python # settings.py DRF_FIREBASE_TOKEN_AUTH = { # REQUIRED SETTINGS: # Path to JSON file with firebase secrets 'FIREBASE_SERVICE_ACCOUNT_KEY_FILE_PATH': r'/mnt/c/Users/ronhe/Google Drive/ProgramsData/WizWot/paywiz-c4b4f-firebase-adminsdk-ekbjf-9b7776879a.json', # OPTIONAL SETTINGS: # Create new matching local user in db, if no match found. # Otherwise, Firebase user not matching a local user will not # be authenticated. 'SHOULD_CREATE_LOCAL_USER': True, # Authentication header token keyword (usually 'Token', 'JWT' or 'Bearer') 'AUTH_HEADER_TOKEN_KEYWORD': 'Token', # Verify that Firebase token has not been revoked. 'VERIFY_FIREBASE_TOKEN_NOT_REVOKED': True, # Require that Firebase user email_verified is True. # If set to True, non verified email addresses from Firebase are ignored. 'IGNORE_FIREBASE_UNVERIFIED_EMAIL': True, } #. Migrate: .. code-block:: bash $ python manage.py migrate drf-firebase-token-auth #. Have your clients adding ``Token <Firebase ID Token>`` in the Authorization Header of their REST requests.


نیازمندی

مقدار نام
>=4.4.0,<5.0.0 firebase-admin
>=1.0,<2.0) importlib-metadata


زبان مورد نیاز

مقدار نام
>=3.6,<4.0 Python


نحوه نصب


نصب پکیج whl drf-firebase-token-auth-0.2.1:

    pip install drf-firebase-token-auth-0.2.1.whl


نصب پکیج tar.gz drf-firebase-token-auth-0.2.1:

    pip install drf-firebase-token-auth-0.2.1.tar.gz