Did somebody use this library to do authenticated ...
# help
a
Did somebody use this library to do authenticated HTTP calls to APIs hosted on AWS? https://github.com/mhart/aws4
m
I use it in my integration tests to call my deployed lambda endpoints
a
Nice.
@Michael Wolfenden so you used it only for testing?
Did you use it to call the lambda directly? or through API GW?
m
I use it to call the lambda via api gateway (ie I create a cognito user in my tests and then sign the http request using the the cognito users credentials via aws4). The reason I only do this in my tests is that I'm using amplify in my frontend and it's API construct does the signing of the request for you
a
Oh nice.