Skip to main content

Replyify OAuth2 consumer for Django

Project description

A Django wrapper for Replyify’s Python API bindings.

Installation

You can install this package by using the pip tool and installing:

$ pip install django-replyify-oauth2

Or:

$ easy_install django-replyify-oauth2

Register Your Application with Replyify

Configure the django-replyify-oauth2 module

From your previously configured app, found at https://app.replyify.com/oauth2/applications add the following to your Django settings.py:

REPLYIFY_CLIENT_ID = '{ update me }'
REPLYIFY_CLIENT_SECRET = '{ update me }'
REPLYIFY_REDIRECT_URI = '{ update me, must match value set from previous step'
REPLYIFY_USER_ID_FIELD = 'id'  # or other primary key user field like `guid`
REPLYIFY_DENIED_REDIRECT = '/path/when/user/denies/access'  # defaults to home page

INSTALLED_APPS = [
    ...
    'replyify_oauth2',
    ...
]

And add the following to your urls.py

from django.urls import include, re_path
urlpatterns = [
    ...
    re_path(r'^replyify/', include(('replyify_oauth2.urls', 'replyify_oauth2'), namespace='replyify')),
    ...
]

Run migrate

**$ python manage.py migrate**

In templates

<a href="{% url 'replyify:authorize' %}?next={% url 'home'|urlencode %}">Connect to Replyify</a>

Note: you can pass next query parameter to the authorize view to direct the user to correct page after OAuth flow has completed successfully. Default will send user to ‘/’

In views as a decorator: this will kick off the Authorization flow or Refresh request (if token is expired) and will send the user back to the original requested url on completion

from replyify_oauth2.decorators import replyify_auth_required

@replyify_auth_required
def my_view_that_needs_replyify(request):
    ...

Using the Replyify API

Documentation for the python bindings can be found here:

In the standard documentation (the first link), most of the reference pages will have examples in Replyify’s official bindings (including Python). Just click on the Python tab to get the relevant documentation.

In the full API reference for python (the second link), the right half of the page will provide example requests and responses for various API calls.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_replyify_oauth2-0.3.0.tar.gz (7.5 kB view details)

Uploaded Source

Built Distribution

django_replyify_oauth2-0.3.0-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file django_replyify_oauth2-0.3.0.tar.gz.

File metadata

File hashes

Hashes for django_replyify_oauth2-0.3.0.tar.gz
Algorithm Hash digest
SHA256 f96e945ea31c1367d991180c43408fc4cac97a8f13f0f77984ae145ab81939da
MD5 33cb82a0e8e8916290580516ad97b637
BLAKE2b-256 f4de81047d45512737b88ef1b34ba5e31af1970cb5effd99abf165ceb535d08b

See more details on using hashes here.

File details

Details for the file django_replyify_oauth2-0.3.0-py3-none-any.whl.

File metadata

File hashes

Hashes for django_replyify_oauth2-0.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 20301af58b318cf058a8df3bababeaf36b6bc8cb53460a4dc36d7247b754aafd
MD5 36e55e6170f700092f483786327ca5dc
BLAKE2b-256 b572ce6d0605740787de8a2cf5b86efdbc70219418d4e55b3a4d7a16f91afc08

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page