It takes no effort to start saving data objects against our API once you have installed one of our API libraries.
var client = new HoppioClient(HOPPIO_KEY);
var obj = new MyObject { Comment = "Hello World" };
client.Create(obj);
jQuery.hoppio.init({ appKey: HOPPIO_KEY });
jQuery.hoppio.createObject("MyObject", { comment: "Hello World" });
Adding a new user has never been easier, not only do we make sure do we make sure their data is secure, but we also take the effort out of the authentication process.
var client = new HoppioClient(HOPPIO_KEY);
var user = new User { Username = "nick", Password = "{s3curePassw0rd]" };
client.CreateUser(user);
jQuery.hoppio.init({ appKey: HOPPIO_KEY });
jQuery.hoppio.createUser({ username: "nick", password: "{s3curePassw0rd]" });
With our temporary storage engine, you can use our API as a temporary cache, so that you objects only stick around as long as you want them too.
var obj = new {
Comment = "Hello World",
objectExpiresOn = DateTime.UtcNow.AddMinutes(15) };
var client = new HoppioClient(HOPPIO_KEY);
client.Create(obj);
var expiresOn = new Date();
expiresOn.setMinutes(expiresOn.getMinutes() + 15);
jQuery.hoppio.init({ appKey: HOPPIO_KEY });
jQuery.hoppio.createObject("MyObject",
{ comment: "Hello World", objectExpiresOn: expiresOn.toJSON() });