2개 답변
- 최신
- 최다 투표
- 가장 많은 댓글
1
One way you can experiment and learn is to use the webhook.site webapp, which will generate a public API URL that you can use in SNS and see the data as it's coming in.
답변함 2년 전
0
I'm not sure what you mean by query parameters, but I use a constant URL for the endpoint and rely on tags to identify the specific recipient. So when I send an email, I create a db row, which gives me the row ID from the database insert id. Then I use that ID as a tag in the destination. Then when I send the email, AWS SES returns the message ID, which I update the db row. And when the SQS message comes through, the tag is part of the message, which helps me match up the database row.
https://docs.aws.amazon.com/ses/latest/APIReference/API_BulkEmailDestination.html
답변함 2년 전
관련 콘텐츠
- AWS 공식업데이트됨 2년 전
- AWS 공식업데이트됨 4년 전
Hi Purdy, Thanks for your reply! It was really a great hook for testing, but the problem exists still now, which is I couldn't get the query params to receive these data into my endpoint! You can see the below data coming after creation. How do I reciev?
Thanks