1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
|
RFC5849: The OAuth 1.0 Protocol
===============================
.. meta::
:description: API references of RFC5849 in Python implementation.
Learn how to create an OAuth 1.0 provider in Python.
This section contains the generic implementation of RFC5849_. Learn how to
create an OAuth 1.0 provider in these frameworks:
1. Flask: :ref:`flask_oauth1_server`.
2. Django: :ref:`django_oauth1_server`.
.. _RFC5849: https://tools.ietf.org/html/rfc5849
.. module:: authlib.oauth1.rfc5849
Servers
-------
.. autoclass:: AuthorizationServer
:members:
:inherited-members:
.. autoclass:: ResourceProtector
:members:
:inherited-members:
Models Mixin
------------
.. autoclass:: ClientMixin
:members:
.. autoclass:: TemporaryCredentialMixin
:members:
:inherited-members:
.. autoclass:: TokenCredentialMixin
:members:
:inherited-members:
|