RESEARCH

Bulk message deletes are counted more than once on the message_count property for threads over the HTTP API – PullAnswer

Description the message_count property on threads has the total count of bulk-message-deletes twice subtracted from the current message count, offsetting the message_count accuracy by however many messages were deleted. This…Read moreBulk message deletes are counted more than once on the message_count property for threads over the HTTP API – PullAnswer

DATA MANAGEMENT RESEARCH

HTTP API doesn’t forward Cookies to Lambdas

Cookie headers are not forwarded to Lambdas $ curl -H “Cookie: test” redacted.execute-api.us-east-2.amazonaws.com {“accept”:”*/*”,”content-length”:”0″,”host”:”redacted.execute-api.us-east-2.amazonaws.com“,”user-agent”:”curl/7.58.0″,”x-amzn-trace-id”:”Root=1-5ed6b365-97645c08fe07add8b0a75568″,”x-forwarded-for”:”redacted”,”x-forwarded-port”:”443″,”x-forwarded-proto”:”https”} Lamda exports.handler = async (event) => { const response = { statusCode: 200, body: JSON.stringify(event.headers) ,…Read moreHTTP API doesn’t forward Cookies to Lambdas