diff --git a/docs/dev/todo.rst b/docs/dev/todo.rst index 8a631d88..91c99749 100644 --- a/docs/dev/todo.rst +++ b/docs/dev/todo.rst @@ -7,9 +7,6 @@ Requests is under active development, and contributions are more than welcome! What Needs to be Done --------------------- -- OAuth Support (`#65 `_) - HTTP Cert Checking (`#30 `_) -- Removal of Poster (`#68 `_) - Python 3.x Support (`#70 `_) - Kerberos Support (`#47 `_) -- More Flexible Context Manager (`#69 `_) \ No newline at end of file diff --git a/docs/user/quickstart.rst b/docs/user/quickstart.rst index 72f4b232..542a5bc6 100644 --- a/docs/user/quickstart.rst +++ b/docs/user/quickstart.rst @@ -238,6 +238,11 @@ Making requests with Basic Auth is extremely simple:: >>> requests.get('https://api.github.com/user', auth=('user', 'pass')) +OAuth Authentication +-------------------- + +Miguel Araujo's `requests-oauth `_ project provides a simple interface for +establishing OAuth connections. Documentation and examples can be found on the requests-oauth `git repository `_. Digest Authentication ---------------------