1

boto.sns sns_connection.subscribe(topic, protocol , endpoint)

unable to subscribe an endpoint to a topic using 'application' as protocol. Current choices - for are: email|email-json|http|https|sqs|sms

Amit Talmor
  • 7,174
  • 4
  • 25
  • 29

1 Answers1

1

The doc strings are out of date in boto. I have submitted a pull request (https://github.com/boto/boto/pull/2017) to fix that. However, you can still specify a value of application for the protocol parameter. Boto is not trying to validate that parameter value. Make sure you supply the appropriate value for the endpoint parameter.

garnaat
  • 44,310
  • 7
  • 123
  • 103