“Could not get any response” response when using postman with subdomain

First Go to Settings in Postman: Off the SSL certificate verification in General Tab: Off the Global Proxy Configuration and Use System Proxy in Proxy Tab: Make Request Timeout to 0 (Zero) Configure Apache: If the above changes resulted in a 404 response, then continue reading 😉 Users that host their site locally (like with … Read more

Postman Chrome: What is the difference between form-data, x-www-form-urlencoded and raw

These are different Form content types defined by W3C. If you want to send simple text/ ASCII data, then x-www-form-urlencoded will work. This is the default. But if you have to send non-ASCII text or large binary data, the form-data is for that. You can use Raw if you want to send plain text or … Read more