- Newest
- Most votes
- Most comments
If i understood your question correctly:
Postman’s new MQTT client does not currently support mutual TLS authentication (mTLS), which is a requirement for AWS IoT Core connections. Although you can upload certificates and keys in Postman, it seems that these are not correctly utilized for mTLS authentication like they are in MQTT.fx (which explicitly supports mTLS).
That’s why:
Your connection works in MQTT.fx (it fully supports mTLS).
Your connection fails in Postman (Postman’s MQTT implementation doesn’t support mTLS for client authentication yet).
What you can do instead:
Use MQTT.fx (or other mTLS-supported clients like mosquitto_pub/mosquitto_sub) for testing AWS IoT Core.
Use AWS IoT Core’s MQTT test client (via AWS Console) for simple testing.
Use the AWS CLI with iot-data commands for quick payload tests (though this bypasses the MQTT protocol).
Postman’s MQTT client is great for plain username/password or unsecured MQTT brokers, but not for AWS IoT Core’s strict mutual TLS setup.
answered a year ago
Relevant content
asked 4 years ago
asked a year ago
- AWS OFFICIALUpdated 2 years ago
