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
Sign up for Replyify at https://app.replyify.com/access/signup
Register your application at https://app.replyify.com/oauth2/applications/register
Supported OAuth2 configuration is Public / Authorization code.
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file django_replyify_oauth2-0.2.1-py3-none-any.whl
.
File metadata
- Download URL: django_replyify_oauth2-0.2.1-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d7f56cbd7f51b182d93eb36911805dde58f840af57787623beb1e5ad7500dc2 |
|
MD5 | 02ea1ad333fbfe263c1e460d57385398 |
|
BLAKE2b-256 | 794f7a981408b0ef62d4bb0f407756e81a7c7328ea86a25a7f5237f3a9a249cd |