0

如何在 AWS 上为 AWS Greengrass 创建 Api 网关?我希望能够使用 3rd 方应用程序通过 API 发布到主题

4

1 回答 1

0

Iot Publish 可以通过 IOT Core 端点 https://docs.aws.amazon.com/iot/latest/apireference/API_iotdata_Publish.html将消息发布到 MQTT Topic

您的 API 可以使用 AWS 开发工具包调用 IoT Publish

调用物联网发布所需的 IAM 权限

{
"Version": "2012-10-17",
"Statement": [
    {
        "Sid": "IOTAccess",
        "Effect": "Allow",
        "Action": [
            "iot:Publish"
        ],
        "Resource": [
            "arn:aws:iot:us-east-1:123456789012:topic/topicName"
        ]
    }
]
}
于 2021-08-03T09:10:58.790 回答