Send Http Request with cookie using CookieJar
Some services are checking the request with cookie to increase the security. So sometime you make a request successful with Postman, but got 403 (or similar error code) when try to request from your server (or a simple CURL request). That because Postman auto detect and add cookie if needed for the request. Using CookieJar will help you do the similar thing: Install npm install axios tough-cookie axios-cookiejar-support Then using a wraper axios to send the request instead....