parameters
oauthlib.parameters ~~~~~~~~~~~~~~~~~~~
This module contains methods related to section 3.5
_ of the OAuth 1.0a spec.
.. _section 3.5
: https://tools.ietf.org/html/rfc5849#section-3.5
prepare_form_encoded_body(oauth_params, body)
Prepare the Form-Encoded Body.
Per section 3.5.2
_ of the spec.
.. _section 3.5.2
: https://tools.ietf.org/html/rfc5849#section-3.5.2
Source code in server/vendor/oauthlib/oauth1/rfc5849/parameters.py
109 110 111 112 113 114 115 116 117 118 |
|
prepare_headers(oauth_params, headers=None, realm=None)
Prepare the Authorization header. Per section 3.5.1
_ of the spec.
Protocol parameters can be transmitted using the HTTP "Authorization" header field as defined by RFC2617
_ with the auth-scheme name set to "OAuth" (case insensitive).
For example::
Authorization: OAuth realm="Example",
oauth_consumer_key="0685bd9184jfhq22",
oauth_token="ad180jjd733klru7",
oauth_signature_method="HMAC-SHA1",
oauth_signature="wOJIO9A2W5mFwDgiDvZbTSMK%2FPY%3D",
oauth_timestamp="137131200",
oauth_nonce="4572616e48616d6d65724c61686176",
oauth_version="1.0"
.. section 3.5.1
: https://tools.ietf.org/html/rfc5849#section-3.5.1 .. RFC2617
: https://tools.ietf.org/html/rfc2617
Source code in server/vendor/oauthlib/oauth1/rfc5849/parameters.py
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 |
|
prepare_request_uri_query(oauth_params, uri)
Prepare the Request URI Query.
Per section 3.5.3
_ of the spec.
.. _section 3.5.3
: https://tools.ietf.org/html/rfc5849#section-3.5.3
Source code in server/vendor/oauthlib/oauth1/rfc5849/parameters.py
121 122 123 124 125 126 127 128 129 130 131 132 133 |
|