Home > other >  CURL 403 Forbidden Error but working good in POST man request
CURL 403 Forbidden Error but working good in POST man request

Time:04-20

Issue: Curl command not giving response with 200 status but If I send request from postman its working fine Here I have shared the CURL command.

Any suggestion to resolve this issue would be appreciated

curl --location --request GET '<domain_url>' \
--header 'Authorization:'

CodePudding user response:

I have solved this issue by using option --ipv4 in curl request since ipv4 whitelisted in server.

curl --ipv4 https://example.org/

  • Related