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
410
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
Platform開発が先行する Platform Engineeringの違和感
kintotechdev
4
550
5年目から始める Vue3 サイト改善 #frontendo
tacck
PRO
3
220
人工衛星のファームウェアをRustで書く理由
koba789
14
7.7k
なぜテストマネージャの視点が 必要なのか? 〜 一歩先へ進むために 〜
moritamasami
0
220
LLMを搭載したプロダクトの品質保証の模索と学び
qa
0
1k
Snowflake Intelligenceにはこうやって立ち向かう!クラシルが考えるAI Readyなデータ基盤と活用のためのDataOps
gappy50
0
160
Practical Agentic AI in Software Engineering
uzyn
0
100
DDD集約とサービスコンテキスト境界との関係性
pandayumi
3
280
実践!カスタムインストラクション&スラッシュコマンド
puku0x
0
370
KotlinConf 2025_イベントレポート
sony
1
130
テストを軸にした生き残り術
kworkdev
PRO
0
200
ブロックテーマ時代における、テーマの CSS について考える Toro_Unit / 2025.09.13 @ Shinshu WordPress Meetup
torounit
0
120
Featured
See All Featured
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
Large-scale JavaScript Application Architecture
addyosmani
512
110k
The Straight Up "How To Draw Better" Workshop
denniskardys
236
140k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
51
5.6k
The Language of Interfaces
destraynor
161
25k
Embracing the Ebb and Flow
colly
87
4.8k
Optimising Largest Contentful Paint
csswizardry
37
3.4k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3k
Rails Girls Zürich Keynote
gr2m
95
14k
Music & Morning Musume
bryan
46
6.8k
The Cost Of JavaScript in 2023
addyosmani
53
8.9k
Designing Experiences People Love
moore
142
24k
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