Open MohammedNoureldin opened 3 years ago
Sorry for the delay, it's summer time, so much less time in front of computer.
Can you point me at the AWSv4 documentation? I'll try and take a look. However, I fix probably won't come until fall, as that's when I'll have time to develop and test it.
Thank you @polandj for you reply!
I am not an expert in the logic of signing, but when I changed a python implementation into a dart implementation, there has been a X-Amz-Security-Token
value that has to be added to the signed URL. I was not sure how to do that using your library.
It is mentioned here https://docs.aws.amazon.com/general/latest/gr/sigv4-create-canonical-request.html.
Please let me know if I am missing or misunderstood something.
Wow, since the original library is C. I can’t say where or what would be adding that header…it could be many places. Did you see this header mentioned in amazon docs anywhere? Could be they’ve added it since the last time I read their spec. I’ll keep this open and hope to get back to this in the fall (when kids back in school).
Thank you @polandj for you reply! I am not an expert in the logic of signing, but when I changed a python implementation into a dart implementation, there has been a X-Amz-Security-Token value that has to be added to the signed URL. I was not sure how to do that using your library. Please let me know if I am missing or misunderstood something. — You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub, or unsubscribe.
Hi,
according to AWSv4 page, in addition to the
access key
andsecret key
, we need thesession token
to sign the requests. However, I see that we cannot use theSession Token
in this library. Could you add it please?