- 新しい順
- 投票が多い順
- コメントが多い順
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年前
関連するコンテンツ
質問済み 3年前
- AWS公式更新しました 2年前
