gaponov
gaponov

Reputation: 1032

Google App Engine Backend URL on dev server. How to find out in code?

The question is about Google App Engine Backend. How do I find out the backend url on dev server in code ? We have simple url formating rule on production server http://backendName.appName.appspot.com But url is random on development server, it's related to some random port http://localhost:xxxx

So how do I find out this dev url in code ?

Upvotes: 2

Views: 702

Answers (1)

Peter Knego
Peter Knego

Reputation: 80340

You can programmatically access backends via Backends API. This also works on dev server.

Upvotes: 2

Related Questions