summaryrefslogtreecommitdiff
path: root/docs/faq.rst
blob: 4814dcda1a913f3073fdc155a031fc523dbb0873 (plain)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
Frequently asked questions
==========================

How do I enable logging for OAuthLib?
-------------------------------------

    See :doc:`error_reporting`.

What parts of OAuth 1 & 2 are supported?
----------------------------------------

    See :doc:`feature_matrix`.

OAuth 1 with RSA-SHA1 signatures says "could not import cryptography". What should I do?
----------------------------------------------------------------------------------------

    Install oauthlib with rsa flag or install cryptography manually via pip.

.. code-block:: sh

    $ pip install oauthlib[rsa]
    ..or..
    $ pip install cryptography

OAuth 2 ServiceApplicationClient and OAuth 1 with RSA-SHA1 signatures say "could not import jwt". What should I do?
-------------------------------------------------------------------------------------------------------------------

    Install oauthlib with signedtoken flag or install pyjwt and cryptography manually with pip.

.. code-block:: sh

    $ pip install oauthlib[signedtoken]
    ..or..
    $ pip install pyjwt cryptography

What does ValueError `Only unicode objects are escapable. Got one of type X.` mean?
-----------------------------------------------------------------------------------

   OAuthLib uses unicode everywhere and when creating a OAuth 1 signature
   a number of parameters need to be percent encoded (aka escaped). At least
   one parameter could not be encoded. Usually because `None` or a non UTF-8 
   encoded string was supplied.

What does ValueError `Error trying to decode a non urlencoded string` mean?
---------------------------------------------------------------------------

    You are trying to decode a response which is not properly encoded, e.g.
    include non percent encoded characters such as `£`. Which could be because
    it has already been decoded by your web framework. 
    
    If you believe it contains characters that should be excempt from this
    check please open an issue and state why.
    
     
What is the difference between a client and a consumer?
-------------------------------------------------------

    None, they both refer to the third-party accessing protected resources
    from an OAuth provider on behalf of a user. In order to do so they have
    to obtain authorization from said user, which is what the `Auth` in `OAuth`
    stands for.

How do I use OAuthLib with Google, Twitter and other providers?
---------------------------------------------------------------

    Most people will be using OAuthLib indirectly. Clients will want to look at
    `requests-oauthlib`_.
    
How do I use OAuthlib as a provider with Django, Flask and other web frameworks?
--------------------------------------------------------------------------------

    Providers can be implemented in any web frameworks. However, some of
    them have ready-to-use libraries to help integration:
    - Django `django-oauth-toolkit`_
    - Flask `flask-oauthlib`_
    - Pyramid `pyramid-oauthlib`_
    - Bottle `bottle-oauthlib`_

    For other frameworks, please get in touch by opening a `GitHub issue`_ or
    on `Gitter OAuthLib community`_. If you have written an OAuthLib package that
    supports your favorite framework, please open a Pull Request to update the docs.


What is the difference between authentication and authorization?
----------------------------------------------------------------

    See `difference`_.

Very briefly, what is the biggest difference between OAuth 1 and 2?
-------------------------------------------------------------------

    OAuth 2 is much simpler since it requires the use of TLS whereas OAuth 1
    had the requirement to work securely without TLS. To be secure without TLS
    OAuth 1 required each request to be signed which can be cumbersome.

Some argue OAuth 2 is worse than 1, is that true?
-------------------------------------------------

    Correctly implemented, OAuth 2 is better in many ways than OAuth 1. Getting
    it right is not trivial and a task OAuthLib aims to help make simple.

.. _`requests-oauthlib`: https://github.com/requests/requests-oauthlib
.. _`django-oauth-toolkit`: https://github.com/evonove/django-oauth-toolkit
.. _`flask-oauthlib`: https://github.com/lepture/flask-oauthlib
.. _`pyramid-oauthlib`: https://github.com/tilgovi/pyramid-oauthlib
.. _`bottle-oauthlib`: https://github.com/thomsonreuters/bottle-oauthlib
.. _`GitHub issue`: https://github.com/oauthlib/oauthlib/issues/new
.. _`Gitter OAuthLib community`: https://gitter.im/oauthlib/Lobby
.. _`difference`: https://www.cyberciti.biz/faq/authentication-vs-authorization/