Hello World Tutorial for Google Application Engine Java Runtime - Communication-mashups - 0 views
Hitch Hiker's Guide to Java: Accessing Google UserService from GWT client through RPC - 0 views
-
This tutorial concerns using Google Accounts to maintain the existence of your users in a Google App Engine application. Google App Engine provides the class UserServiceFactory to facilitate that. UserServiceFactory is then used to generate UserService object, which in turn provides the following features createLoginURL createLogoutURL getCurrentUser isUserAdmin isUserLoggedIn You would use UserService object to generate the login URL for the browser. The browser would be directed/redirected to this URL. On reaching this URL, the Google log-in prompt would be displayed by Google's server.
High Scalability - High Scalability - Using Google AppEngine for a Little Mic... - 0 views
-
to write a string to a twitter account. Here’s my original java code:
Episode 13: Using the Blobstore Java API « Google App Engine Java Experiments - 0 views
-
The Blobstore API provides two types of functions: An ability to upload and save the blob automaticallyThe BlobstoreService which is provided by the com.google.appengine.api.blobstore.BlobstoreService allows us to specify a URL where users can upload their large files. You can think of this url as the action element in the HTML form. The implementation at this URL is internal to the BlobstoreService. But what it does is significant. It will extract out the file contents that you uploaded and store it as a Blob in the database. Each blob that is stored in the database is associated with the a Blob Key. This Blob key is then provided to your url and you can then use the Blob Key to do anything within your application. In our case, we form a url that is tweeted to the users who can then view the picture that we uploaded. An ability to serve or retrieve the blob.The BlobstoreService also provides an ability to serve or retrieve the blob that was saved successfully. It will provide the blob as a response that could then use as a source in an <img> element for example. All you need to do is provide it the Blob Key and the response stream and in return, it will provide the content properly encoded as per its type that you could then use.
Episode 16 : Using the Datastore API « Google App Engine Java Experiments - 0 views
‹ Previous
21 - 40 of 54
Next ›
Showing 20▼ items per page