On 09/08/2015 05:04 PM, Damian Johnson wrote:
Hi Micah, on first glance looks fine. For what it's worth here's the example I got working a while back...
https://stem.torproject.org/tutorials/over_the_river.html#ephemeral-hidden-s...
Cheers! -Damian
Doh, I figured out what I did wrong. I was calling:
res = c.create_ephemeral_hidden_service(WEB_PORT)
When I should have been calling:
res = c.create_ephemeral_hidden_service({ 80: WEB_PORT }, await_publication = True)
The await_publication flag is great, too. Thanks, it's working for me now.