summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@thomsonreuters.com>2018-03-19 16:27:12 +0100
committerJonathan Huot <jonathan.huot@thomsonreuters.com>2018-08-10 13:30:48 +0200
commited1a02442a20c82976bc84698c9a3f68e9d4631e (patch)
treea5a64bf0409c9c92112cdf4b003b7b607123ff62
parente18a4cf83745642080fa0a2233959cc52617c679 (diff)
downloadoauthlib-ed1a02442a20c82976bc84698c9a3f68e9d4631e.tar.gz
Mention our "extra" flags somewhere.
-rw-r--r--docs/faq.rst8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/faq.rst b/docs/faq.rst
index 04c59ec..d9cd5c6 100644
--- a/docs/faq.rst
+++ b/docs/faq.rst
@@ -14,19 +14,23 @@ What parts of OAuth 1 & 2 are supported?
OAuth 1 with RSA-SHA1 signatures says "could not import cryptography". What should I do?
----------------------------------------------------------------------------------
- Install cryptography via pip.
+ 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 pyjwt and cryptography with pip.
+ 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?