معرفی شرکت ها


drf-signed-auth-0.1.1


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Sign and authenticate signed URLs for one-time use
ویژگی مقدار
سیستم عامل -
نام فایل drf-signed-auth-0.1.1
نام drf-signed-auth
نسخه کتابخانه 0.1.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Marc Gibbons
ایمیل نویسنده marc_gibbons@rogers.com
آدرس صفحه اصلی https://github.com/marcgibbons/drf_signed_auth
آدرس اینترنتی https://pypi.org/project/drf-signed-auth/
مجوز BSD
DRF Signed Auth =============== A stateless authentication backend intended to temporarily expose protected resources. |Build Status| |Code Coverage| Why? ---- The motivation for this package comes from a frequent project requirement to directly download served by the API in formats like CSV or Excel within the context of a single-page-application. Within this context, authentication cannot be achieved using HTTP Headers, as the resource is accessed directly through a URL via an ``<a>`` tag. Therefore, a temporary signature passed in the query string must be used to authenticate the request. This package uses Django's cryptographic signing to produce a short-lived signature. It provides a view used to produce the signature and a DRF authentication backend. Is this secure? --------------- Use this backend with caution and sparingly. Anyone with a copy of the signed URL will be able to access a protected resource, so keep the expiry time short (see settings), and ensure that the Django ``SECRET_KEY`` setting is kept private. Requirements ------------ - Python 2.7 / 3.6 - Django 1.8, 1.9, 1.10, 1.11 - Django REST Framework 3.6, 3.7 Installation ------------ ``pip install drf-signed-auth`` Quick start ----------- Register the SignUrlView in ``urls.py`` .. code:: python # urls.py from django.conf.urls import url from drf_signed_auth.views import SignUrlView urlpatterns = [ ... url(r'^sign-url/$', SignUrlView.as_view(), name='sign-url'), ... ] Use the authentication backend on the view you wish to expose. .. code:: python # views.py from drf_signed_auth.authentication import SignedURLAuthentication from rest_framework.permissions import IsAuthenticated from rest_framework.views import APIView class MyCSVView(APIView): ... authentication_classes = [SignedURLAuthentication] permission_classes = [IsAuthenticated] ... Usage ----- Obtain the signature by making a POST request to the Sign URL endpoint, and provide the ``url`` of the endpoint you wish to access. This can be a relative or absolute path. Example ~~~~~~~ :: # Request POST /sign-url HTTP/1.1 HOST your.api.host Content-Type: application/json {"url": "/path"} # Response http://your.api.host/path?sig=xxxxxxxxxxxxxxx The returned URL will be valid for the time specified by the ``SIGNED_URL_TTL``. Settings -------- The following settings may be configured in your project's ``settings.py`` +------+------+------+ | Sett | Desc | Defa | | ing | ript | ult | | | ion | | +======+======+======+ | ``SI | The | ``30 | | GNED | time | `` | | _URL | in | (sec | | _TTL | seco | onds | | `` | nds | ) | | | for | | | | whic | | | | h | | | | the | | | | sign | | | | atur | | | | e | | | | is | | | | vali | | | | d | | +------+------+------+ | ``SI | The | ``si | | GNED | quer | g`` | | _URL | ystr | | | _QUE | ing | | | RY_P | vari | | | ARAM | able | | | `` | name | | +------+------+------+ | ``SI | Perm | ``[r | | GNED | issi | est_ | | _URL | on | fram | | _PER | clas | ewor | | MISS | ses | k.pe | | ION_ | on | rmis | | CLAS | the | sion | | SES` | sign | s.Is | | ` | ed | Auth | | | URL | enti | | | view | cate | | | | d]`` | +------+------+------+ .. |Build Status| image:: https://travis-ci.org/marcgibbons/drf_signed_auth.png?branch=master :target: https://travis-ci.org/marcgibbons/drf_signed_auth .. |Code Coverage| image:: https://codecov.io/gh/marcgibbons/drf_signed_auth/branch/master/graph/badge.svg :target: https://codecov.io/gh/marcgibbons/drf_signed_auth


نیازمندی

مقدار نام
>=1.0.1 furl


نحوه نصب


نصب پکیج whl drf-signed-auth-0.1.1:

    pip install drf-signed-auth-0.1.1.whl


نصب پکیج tar.gz drf-signed-auth-0.1.1:

    pip install drf-signed-auth-0.1.1.tar.gz