Google App Engine - Upload to App Engine Exceptions
I'm getting the following exceptions when I try and upload my app to app engine:
java.io.IOException: Error posting to URL: http://appengine.google.com/api/appversion/create?app_id=&version=1&
400 Bad Request
app_id GET query string parameter must be supplied.
Unable to upload app: Error posting to URL: http://appengine.google.com/api/appversion/create?app_id=&version=1&
400 Bad Request
app_id GET query string parameter must be supplied.
The issue appears to be that the app_id is missing in the URL. Does anyone know how I set it? Or is that a bug?
Thanks for the help, very much appreciated.
Tegan
Please sign in to leave a comment.
I found the solution, you need to specify your app name in appengine-web.xml.
<?xml version="1.0" encoding="utf-8"?>
<appengine-web-app xmlns="http://appengine.google.com/ns/1.0">
<application>yourappname</application>
<version>1</version>
</appengine-web-app>