I'm working with Google Cloud Endpoints, and I'm trying to generate a discovery document to create an iOS client library and so that I can test my endpoints. I tried to do it with this command, as said in the docs:
endpointscfg.py gen_discovery_doc -o . -f rpc appfile.ApiClass
With appfile and ApiClass changed to the real names.
When I run this, I get:
urllib2.HTTPError: HTTP Error 503: Service Unavailable
Why is generating a discovery document accessing the internet at all? And why am I getting this error? And what can I do to fix it?
P.S. I already checked my code for basic errors like other types in message classes, bad hostnames, etc., but nothing there seems to be the problem.