I use a service that publishes messages for Amazon SQS, but my messages fail when I do the following in Python, via boto:
queue = SQS_CONNECTION.get_queue(QUEUE_NAME)
messages = queue.get_messages()
Messages are returned as strings of what appears to be base 64 encoded data
source
share