有没有办法在不使用 AWS SDK 的情况下将消息排队到 SQS 队列
Is there a way to enqueue a message to SQS queue without using the AWS SDK
假设我有我的 AWS 账户的 SQS url、访问和秘密密钥。有没有办法在不使用 AWS SDK 的情况下将消息放入此队列?假设使用 curl 命令。
您可以使用 AWS CLI tool. Or you could go through the process of creating a Signature V4 signed request 并使用 curl 提交它(我建议在走这条路之前编写使用 AWS SDK 的代码)。
假设我有我的 AWS 账户的 SQS url、访问和秘密密钥。有没有办法在不使用 AWS SDK 的情况下将消息放入此队列?假设使用 curl 命令。
您可以使用 AWS CLI tool. Or you could go through the process of creating a Signature V4 signed request 并使用 curl 提交它(我建议在走这条路之前编写使用 AWS SDK 的代码)。