Zoltan Feher

Results 1 issues of Zoltan Feher

using the example ``` const axios = require("axios"); const aws4Interceptor = require("aws4-axios").aws4Interceptor; const interceptor = aws4Interceptor({ region: "eu-west-2", service: "execute-api", }); axios.interceptors.request.use(interceptor); axios.get("https://example.com/foo").then((res) => { console.log(res); }); ``` with latest...