Authentication

API Key

hyperadmin ships with an application to do basic API key authentication.

Installation

Add hyperadmin.contrib.apikey to INSTALLED_APPS.

Add the following to your settings:

DEFAULT_API_REQUEST_CLASS = 'hyperadmin.contrib.apikey.apirequests.HTTPAPIKeyRequest'

Or to explicitly set the api request class of a site:

from hyperadmin.contrib.apikey.apirequests import HTTPAPIKeyRequest
site = ResourceSite(apirequest_class=HTTPAPIKeyRequest)

Project Versions

Table Of Contents

Previous topic

Introduction

Next topic

Clients

This Page