Upgrade to Pro — share decks privately, control downloads, hide ads and more …

A Deep Dive Into Windows Azure Mobile Services

A Deep Dive Into Windows Azure Mobile Services

A Deep Dive Into Windows Azure Mobile Services

Shiju Varghese

February 15, 2014
Tweet

Other Decks in Technology

Transcript

  1. Action HTTP Verb URL Suffix Create POST /TodoItem Read GET

    /TodoItem?$filter=id%3D42 Update PATCH /TodoItem/id Delete DELETE /TodoItem/id http://kmugdevcon.azure-mobile.net/tables/*
  2. Reading Azure Storage Table var azure = require('azure'); var accountName

    = 'accountname'; var accountKey = 'Accountkey------------nKHDsW2/0Jzg=='; var host = accountName + '.table.core.windows.net'; var tableService = azure.createTableService(accountName, accountKey, host); tableService.queryTables(function (error, tables) { if (error) { request.respond(500, error); } else { request.respond(200, tables); } });