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
いま現場PMのあなたが、 経営と向き合うPMになるために 必要なこと、腹をくくること
hiro93n
9
7.6k
Copilotの力を実感!3ヶ月間の生成AI研修の試行錯誤&成功事例をご紹介。果たして得たものとは・・?
ktc_shiori
0
340
Evolving Architecture
rainerhahnekamp
3
250
【JAWS-UG大阪 reInvent reCap LT大会 サンバが始まったら強制終了】“1分”で初めてのソロ参戦reInventを数字で振り返りながら反省する
ttelltte
0
140
AWSマルチアカウント統制環境のすゝめ / 20250115 Mitsutoshi Matsuo
shift_evolve
0
110
あなたの知らないクラフトビールの世界
miura55
0
120
AWSサービスアップデート 2024/12 Part3
nrinetcom
PRO
0
140
AWS Community Builderのススメ - みんなもCommunity Builderに応募しよう! -
smt7174
0
170
When Windows Meets Kubernetes…
pichuang
0
300
GeometryReaderやスクロールを用いた表現と紐解き方
fumiyasac0921
0
100
新卒1年目、はじめてのアプリケーションサーバー【IBM WebSphere Liberty】
ktgrryt
0
110
AWS re:Invent 2024 recap in 20min / JAWSUG 千葉 2025.1.14
shimy
1
100
Featured
See All Featured
Code Review Best Practice
trishagee
65
17k
Building an army of robots
kneath
302
45k
A designer walks into a library…
pauljervisheath
205
24k
Art, The Web, and Tiny UX
lynnandtonic
298
20k
Optimising Largest Contentful Paint
csswizardry
33
3k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
8
1.2k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
656
59k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
Fashionably flexible responsive web design (full day workshop)
malarkey
406
66k
It's Worth the Effort
3n
183
28k
Being A Developer After 40
akosma
89
590k
Thoughts on Productivity
jonyablonski
68
4.4k
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