Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)



Deploy to App Engine

Learning objectives
  • Deploy your web application to App Engine.

Now you can unleash your app on the world by deploying it to App Engine.

  1. Go to appengine.google.com (you will need to be logged into your Google Account).
  2. Create a new application and remember its application id.
  3. Open app.yaml in your favorite editor.
  4. Replace application: goplus with the application id you chose earlier.
    application: YOUR_APP_ID
  5. Deploy your application by running appcfg.py (located in the SDK directory) with the update command and your application directory as the last argument.
    /path/to/google_appengine/appcfg.py --oauth2 update goplus
  6. Load http://YOUR_APP_ID.appspot.com/gopher you should see a fresh picture of a gopher whenever someone posts one to the Google+ public stream.

Now you or your friends can easily embed a Gopher-related picture in their webpages using this HTML snippet.

<img src="YOUR_APP_ID.appspot.com/gopher">

Optional steps: Extend the app

Authentication required

You need to be signed in with Google+ to do that.

Signing you in...

Google Developers needs your permission to do that.