posted Mar 11, 2010, 8:16 AM by Geoffrey Kneller
Google has now opened up Google Apps Marketplace, and if you're a developer of cloud computing applications using Google App Engine, you'll want to get involved! In this post, I'll begin to describe the process of getting an app ready for the marketplace from a developer's perspective.
From a high-level perspective, here are the steps to get an app ready for the marketplace:
- Build an application. It appears that it doesn't have to be a Google App Engine app - any cloud computing application that meets certain standards (discussed below) will work. Google has put up a tutorial of how to do this, with a non-Java application. I'll be presenting a Java tutorial using Google Web Toolkit and Google App Engine on these pages over the next few weeks.
- Understand some design issues. There are a few things the application developer should know going into the design effort. Google has an application lifecycle document available, and there are some key points on it that a developer should understand:
- There are data access API's for mail, calendar, sites, spreadsheets, and contacts, so you should understand how to integrate with the user's existing Google apps data using these APIs if it's important to your app.
- Google will provide a universal navigation menu bar in Google Apps with your app as a link on the 'More' item on the left menu, based on a manifest that you provide.
- The dashboard can be used to give a domain administrator access to additional configuration settings for your app.
- Implement Single Sign-On. Your app has to support OpenID Single Sign On. Google has some good documentation up for doing this, and there appear to be libraries already available in a variety of the languages people do web development in. We'll be implementing this as part of our Java tutorial later on, but if you're designing a new app from scratch, it would be good to understand this crucial piece of the puzzle up front.
- Create a Manifest. You'll need to create an XML manifest file to describe your app to the Google Apps marketplace.
- Sign Up. There are a few steps to sign up and publish your application. You will need to:
- Sign in to the marketplace application using your Google account.
- Create a vendor profile, with information like your company name, address, and what you do.
- Create a listing for your application. You can create a listing for a product, or for professional services. Note that your first listing will require you to pay $100. You'll have to provide information on your product such as a name, overview, and pricing details. You can also add marketing collaterals like a video or screenshots.
- You can then submit your listing for the Google approval process.
So that's a basic list of what it takes to get going. In future posts, we'll go into more detail on the design issues and SSO implementation with a simple Java app. |
|