aws-doc-sdk-examples
aws-doc-sdk-examples copied to clipboard
BUG in Python Sigv4 code
What is the issue?
https://docs.aws.amazon.com/en_us/code-samples/latest/catalog/python-signv4-v4-signing-get-querystring.py.html
There's a bug in the code. In line
request_url = endpoint + "?" + canonical_querystring
should be
request_url = endpoint + canonical_uri + "?" + canonical_querystring
Any other related details we should know about?
Reported from SIM.
Add a note to mark for deprecation