- 最新
- 最多得票
- 最多評論
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.
已回答 1 年前
相關內容
已提問 2 年前
- AWS 官方已更新 2 年前
