AWS IoT Core mqtt connection using username and password

0

Is there a way to make a mqtt connection with username and password instead of doing it using the certificates?

已提問 2 個月前檢視次數 146 次
1 個回答
1

Hi there!

Yes, username and password are supported through custom authorizers. This uses an AWS Lambda function to evaluate the provided username and password and it returns either an allow or deny for the connection. You can find specifics here, and here is a sample in GitHub that demonstrates this feature.

Please let me know if this answers your question (accept answer), or if you require more clarification please comment.

AWS
Gavin_A
已回答 2 個月前
profile pictureAWS
專家
Greg_B
已審閱 2 個月前
  • Thank you for your answer. I am still having problems with the connection using username and password. First of all, I created the lambda function. After that, I created the authorizer just adding the lambda function and activating it. I added the invokeFunction permission in Lambda too using the arn of the authorizer. I then tried to make the connection. Lambda doesn't give me any error. However, when connecting the node red to AWS with the username, password, port 443, endpoint and topic i can't send the message.

  • Custom authentication with username/password requires also setting the ALPN TLS extension and setting the SNI value. Node-RED's MQTT components provide for this via the tls-config config node, set the ALPN Protocol field to mqtt (details here). Also set the Server Name field to the custom authorizer fully qualified domain name.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南