Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
A Deep Dive Into Windows Azure Mobile Services
Search
Shiju Varghese
February 15, 2014
Technology
0
390
A Deep Dive Into Windows Azure Mobile Services
A Deep Dive Into Windows Azure Mobile Services
Shiju Varghese
February 15, 2014
Tweet
Share
Other Decks in Technology
See All in Technology
7日間でハッキングをはじめる本をはじめてみませんか?_ITエンジニア本大賞2025
nomizone
2
1.8k
関東Kaggler会LT: 人狼コンペとLLM量子化について
nejumi
3
580
管理者しか知らないOutlookの裏側のAIを覗く#AzureTravelers
hirotomotaguchi
2
370
OpenID BizDay#17 KYC WG活動報告(法人) / 20250219-BizDay17-KYC-legalidentity
oidfj
0
240
2/18/25: Java meets AI: Build LLM-Powered Apps with LangChain4j
edeandrea
PRO
0
110
Amazon S3 Tablesと外部分析基盤連携について / Amazon S3 Tables and External Data Analytics Platform
nttcom
0
130
偶然 × 行動で人生の可能性を広げよう / Serendipity × Action: Discover Your Possibilities
ar_tama
1
1.1k
アジャイル開発とスクラム
araihara
0
170
現場で役立つAPIデザイン
nagix
33
12k
レビューを増やしつつ 高評価維持するテクニック
tsuzuki817
1
700
エンジニアの育成を支える爆速フィードバック文化
sansantech
PRO
3
1.1k
Larkご案内資料
customercloud
PRO
0
650
Featured
See All Featured
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
28
9.3k
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
27
1.9k
Building Applications with DynamoDB
mza
93
6.2k
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
29
2.4k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
32
2.1k
Build The Right Thing And Hit Your Dates
maggiecrowley
34
2.5k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
The Pragmatic Product Professional
lauravandoore
32
6.4k
Java REST API Framework Comparison - PWX 2021
mraible
28
8.4k
Evolution of real-time – Irina Nazarova, EuRuKo, 2024
irinanazarova
6
550
We Have a Design System, Now What?
morganepeng
51
7.4k
Navigating Team Friction
lara
183
15k
Transcript
https://github.com/shijuvar KOCHI DEVCON 2014
http://weblogs.asp.net/shijuvarghese
None
None
None
None
None
None
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/*
None
None
None
Sending Push Notifications
None
None
None
None
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); } });
Sending email with SendGrid var SendGrid = require('sendgrid').SendGrid;
None
None
http://www.windowsazure.com http://www.windowsazure.com/mobile
None