SlideShare a Scribd company logo
A Hitchhiker's Guide
to
Azure Mobile Apps
@DavidGiard
David Giard
Microsoft Technical Evangelist
• @DavidGiard
• DavidGiard.com
• TechnologyAndFriends
• dGiard@microsoft.com
@DavidGiard
Agenda
• Why Azure Mobile Apps?
• Mobile Architecture
• Common Data Access
• Customization
• Dynamic Data
• Client Code
• Identity and Permissions
• Scaling
• API Scripts
• Notifications
@DavidGiard
Why Azure Mobile Apps?
• Create and maintain back-end data store
• Frees you from plumbing code
• Handles API Changes
• Cross-Platform solution
• Choose JavaScript or .NET
@DavidGiard
Why Azure Mobile Apps?
• Integrate with
• Web Apps
• Logic Apps
• API Apps
• All features of Web Apps
@DavidGiard
Mobile Architecture
Phone
Data
Tablet or PC
iPhone
iPad
Android
JavaScript
REST
APIPhone
@DavidGiard
Permissions
Pieces of Azure Mobile Apps
SQL Server table
READ
INSERT
UPDATE
DELETE
IdentityClient Code
@DavidGiard
REST
https://Giard.azurewebsites.net/Tables/Table1
https://mymobileapp-code.azurewebsites.net/Tables/Table1
• GET, PUT, POST, DELETE, PATCH
• Extend GET with oData Query syntax
@DavidGiard
REST
HTTP Verb Action SQL
GET Read Data SELECT…
POST Create Data INSERT…
DELETE Delete Data DELETE…
PUT or PATCH Update Data UPDATE…
@DavidGiard
REST
Client
Endpoint
Request
Response
VERB
(GET)
Data
(JSON)
@DavidGiard
REST
Client
Endpoint
Request
VERB
(POST)
Data
(JSON)
Response
@DavidGiard
oData Query Syntax
Extension Description
$filter WHERE clause
$inlinecount # items in table
$orderby SORT clause
$select Columns to return
$skip #records to skip
$top #records to return
../Tables/Table1?$filter=state eq IL
../Tables/Table1?$filter=state eq IL&$orderby=LastName
@DavidGiard
Dynamic Schema
• Automatically adds columns if matching data submitted
• Useful during development
• Turn off during production
@DavidGiard
Permissions
@DavidGiard
Demo
@DavidGiard
Identity – Single Sign-On
Client
Azure Mobile
App API
Twitter
or Facebook
or Google
or Microsoft
TOKEN
@DavidGiard
Identity
function insert(item, user, request) {
item.CreatedBy = user.userId;
request.execute();
}
function read(query, user, request) {
query.where ({CreatedBy:user.userId});
request.execute();
}
@DavidGiard
Demo
@DavidGiard
Scaling
@DavidGiard
Scaling
@DavidGiard
API Scripts
@DavidGiard
API Scripts
exports.post = function(request, response) {
// Use "request.service" to access features of your Mobile App, e.g.:
// var tables = request.service.tables;
// var push = request.service.push;
response.send(statusCodes.OK, { message : 'Hello World!' });
};
exports.get = function(request, response) {
response.send(statusCodes.OK, { message : 'Hello World!' });
};
<Mobile App URL>/api/<API Name>
https://giard.azure-mobile.net/api/MyApi
@DavidGiard
Demo
@DavidGiard
Push Notifications
@DavidGiard
Push Notifications
App
Push Service
APN (Apple)
GCM (Google)
WNS (Windows 8)
MPNS (Windows Phone)
Azure
Mobile Apps
var payload =
'<?xml version="1.0" encoding="utf-8"?><toast><visual><binding template="ToastText01">' +
'<text id="1">Sample Toast</text></binding></visual></toast>';
var push = request.service.push;
push.wns.send(null,
payload,
'wns/toast', {
success: function (pushResponse) {
console.log("Sent push:", pushResponse);
}
});
}
@DavidGiard
Azure
Mobile Apps
Push Notifications
Push Service
APN (Apple)
GCM (Google)
WNS (Windows 8)
MPNS (Windows Phone)
Notification
Hub tinyurl.com/PushNoti
@DavidGiard
Push Notification on Windows 8 & WP8
1. Create Mobile App
2. Write Client App
1. Associate app with store
2. Get Package SID and Client ID from Live Services. Copy to Mobile App.
3. Register notifications channel in OnLaunched (App.xaml.cs)
4. Enable Toast notifications (Package.appxmanifest)
3. Update service to send Push Notification
tinyurl.com/Win8Push
@DavidGiard
So Long and Thanks!
David Giard
• @DavidGiard
• DavidGiard.com
• TechnologyAndFriends.com
• channel9.msdn.com/niners/dgiard

More Related Content

PPTX
Building a TV show with Angular, Bootstrap, and Web Services
PPTX
Angular2 and TypeScript
PPTX
SharePoint Saturday Ottawa 2015 - Office 365 and PowerShell - A match made in...
PDF
Supercharge Your Pages - New Ways to Extend the Confluence Editor
PPTX
MongoDB.local Seattle 2019: MongoDB Stitch Tutorial
PDF
Production Ready Web Services with Dropwizard
PDF
Forge - DevCon 2016: Building Value-Added Integrations with Autodesk’s IoT APIs
PPTX
Angular JS, steal the idea
Building a TV show with Angular, Bootstrap, and Web Services
Angular2 and TypeScript
SharePoint Saturday Ottawa 2015 - Office 365 and PowerShell - A match made in...
Supercharge Your Pages - New Ways to Extend the Confluence Editor
MongoDB.local Seattle 2019: MongoDB Stitch Tutorial
Production Ready Web Services with Dropwizard
Forge - DevCon 2016: Building Value-Added Integrations with Autodesk’s IoT APIs
Angular JS, steal the idea

What's hot (20)

PPTX
MongoDB.local Atlanta: MongoDB Stitch Tutorial
PDF
Discover the Possibilities of the Jira Cloud Asset API
PDF
Vaadin 7.2
PDF
Introduction to Google App Engine
PPTX
TechNet Conference 2013 Berlin-Wie Sie Office 365 mit Windows Azure steuern b...
PDF
Vaadin & Web Components
PPTX
Community call: Develop multi tenant apps with the Microsoft identity platform
PDF
Integrate CI/CD Pipelines with Jira Software Cloud
PPTX
Microsoft Graph developer community call-March 2020
PPTX
Deep Dive Mobile Development with Office 365
PDF
Incremental deployment of new features
PPTX
Implementation of azure active directory authentication with cross platform d...
PDF
Introduction to Google Cloud Endpoints: Speed Up Your API Development
PPTX
MongoDB.local Dallas 2019: MongoDB Stitch Tutorial
PDF
Intro firebase
PDF
Google+ API (2012)
PDF
AppSyncをReactで使ってみた
PPTX
Microsoft identity platform community call-May 2020
PPT
Angular App Presentation
PPTX
MongoDB.local Atlanta: MongoDB Stitch Tutorial
Discover the Possibilities of the Jira Cloud Asset API
Vaadin 7.2
Introduction to Google App Engine
TechNet Conference 2013 Berlin-Wie Sie Office 365 mit Windows Azure steuern b...
Vaadin & Web Components
Community call: Develop multi tenant apps with the Microsoft identity platform
Integrate CI/CD Pipelines with Jira Software Cloud
Microsoft Graph developer community call-March 2020
Deep Dive Mobile Development with Office 365
Incremental deployment of new features
Implementation of azure active directory authentication with cross platform d...
Introduction to Google Cloud Endpoints: Speed Up Your API Development
MongoDB.local Dallas 2019: MongoDB Stitch Tutorial
Intro firebase
Google+ API (2012)
AppSyncをReactで使ってみた
Microsoft identity platform community call-May 2020
Angular App Presentation
Ad

Viewers also liked (20)

PDF
The Hitchhicker’s Guide to Windows Azure Mobile Services | FalafelCON 2014
PPT
Satellite Videoconferencing
PPT
Orientazioa2003
PPT
Bankruptcy Information
PPT
Beths Powerpoint
PDF
What is a Mobile Responsive Website?
DOCX
ACHPER QR Code Activity
PDF
What Is Social Media Optimization?
PDF
Facile come fare i pop corn
PDF
WIH Resource Group OPA Overview
PPT
50 Words Powerpoint Jane
PDF
Ateb 2011 Greenwich Speech V F2
PPTX
PPTX
Μουσείο Ιστορικής Μνήμης - Κοραή 4, Αθήνα
PPTX
Calling Dr Watson To Radiology - RSNA Presentation
PDF
Standing out from the crowd: You, Your Brand, and Your WordPress Theme
PPTX
Gang announcements 2010 07
PPT
A Ri Zona Powerpoint
PDF
Quality in PHP projects beyond Unittests.pdf
PPTX
Gang announcements 2011 10
The Hitchhicker’s Guide to Windows Azure Mobile Services | FalafelCON 2014
Satellite Videoconferencing
Orientazioa2003
Bankruptcy Information
Beths Powerpoint
What is a Mobile Responsive Website?
ACHPER QR Code Activity
What Is Social Media Optimization?
Facile come fare i pop corn
WIH Resource Group OPA Overview
50 Words Powerpoint Jane
Ateb 2011 Greenwich Speech V F2
Μουσείο Ιστορικής Μνήμης - Κοραή 4, Αθήνα
Calling Dr Watson To Radiology - RSNA Presentation
Standing out from the crowd: You, Your Brand, and Your WordPress Theme
Gang announcements 2010 07
A Ri Zona Powerpoint
Quality in PHP projects beyond Unittests.pdf
Gang announcements 2011 10
Ad

Similar to Azure mobile apps (20)

PPTX
Building a chat app with windows azure mobile services
PPTX
Azure Mobile Service - Techdays 2014
PPTX
Building mobile back ends with windows azure mobile services
PPTX
Building a chat app with windows azure mobile
PPTX
Azure Mobile Services
PPTX
Get started azure- Azure Mobile Services
PPTX
2015.04.23 Azure Mobile Services
PPTX
Building a chat app with windows azure mobile
PPTX
Cnam cours azure zecloud mobile services
PPTX
Windows Azure Mobile Services - The Perfect Partner
PPTX
Антон Бойко (Microsoft Azure MVP, Ukrainian Azure Community Founder) «Azure M...
PPTX
Windows Azure mobile services - Kolkata - 28 June 2015
PDF
Azure mobile services
PPTX
Cloud Powered Mobile Apps with Azure
PPTX
Cloud Powered Mobile Apps With Azure
PPTX
Mobile Services for Windows Azure
PPTX
Cloud Powered Mobile Apps with Azure
PPTX
World Azure Day Mobile Services Presentation
PDF
Uwams cloud enable-windows_store_apps_java_script
PDF
Using Windows Azure Mobile Services to Cloud-Enable
Building a chat app with windows azure mobile services
Azure Mobile Service - Techdays 2014
Building mobile back ends with windows azure mobile services
Building a chat app with windows azure mobile
Azure Mobile Services
Get started azure- Azure Mobile Services
2015.04.23 Azure Mobile Services
Building a chat app with windows azure mobile
Cnam cours azure zecloud mobile services
Windows Azure Mobile Services - The Perfect Partner
Антон Бойко (Microsoft Azure MVP, Ukrainian Azure Community Founder) «Azure M...
Windows Azure mobile services - Kolkata - 28 June 2015
Azure mobile services
Cloud Powered Mobile Apps with Azure
Cloud Powered Mobile Apps With Azure
Mobile Services for Windows Azure
Cloud Powered Mobile Apps with Azure
World Azure Day Mobile Services Presentation
Uwams cloud enable-windows_store_apps_java_script
Using Windows Azure Mobile Services to Cloud-Enable

More from David Giard (20)

PPTX
Data Visualization - CodeMash 2022
PPTX
Azure data factory
PPTX
Azure functions
PPTX
University of Texas lecture: Data Science Tools in Microsoft Azure
PPTX
University of Texas, Data Science, March 29, 2018
PPTX
Intro to cloud and azure
PPTX
Azure and deep learning
PPTX
Azure and Deep Learning
PPTX
Custom vision
PPTX
Cloud and azure and rock and roll
PPTX
Own your own career advice from a veteran consultant
PPTX
You and Your Tech Community
PPTX
Microsoft Azure IoT overview
PPTX
Cloud and azure and rock and roll
PPTX
Big Data on azure
PPTX
Microsoft azure without microsoft
PPTX
Effective Data Visualization
PPTX
Containers
PPTX
Cloud and azure and rock and roll
PPTX
How I Learned to Stop Worrying and Love jQuery (Jan 2013)
Data Visualization - CodeMash 2022
Azure data factory
Azure functions
University of Texas lecture: Data Science Tools in Microsoft Azure
University of Texas, Data Science, March 29, 2018
Intro to cloud and azure
Azure and deep learning
Azure and Deep Learning
Custom vision
Cloud and azure and rock and roll
Own your own career advice from a veteran consultant
You and Your Tech Community
Microsoft Azure IoT overview
Cloud and azure and rock and roll
Big Data on azure
Microsoft azure without microsoft
Effective Data Visualization
Containers
Cloud and azure and rock and roll
How I Learned to Stop Worrying and Love jQuery (Jan 2013)

Recently uploaded (20)

PPTX
SOPHOS-XG Firewall Administrator PPT.pptx
PPTX
cloud_computing_Infrastucture_as_cloud_p
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
PDF
August Patch Tuesday
PDF
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PDF
Network Security Unit 5.pdf for BCA BBA.
PPT
Teaching material agriculture food technology
PDF
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PDF
Accuracy of neural networks in brain wave diagnosis of schizophrenia
PDF
Per capita expenditure prediction using model stacking based on satellite ima...
PDF
Getting Started with Data Integration: FME Form 101
PPTX
A Presentation on Artificial Intelligence
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
gpt5_lecture_notes_comprehensive_20250812015547.pdf
PDF
Approach and Philosophy of On baking technology
PDF
Univ-Connecticut-ChatGPT-Presentaion.pdf
SOPHOS-XG Firewall Administrator PPT.pptx
cloud_computing_Infrastucture_as_cloud_p
A comparative study of natural language inference in Swahili using monolingua...
Profit Center Accounting in SAP S/4HANA, S4F28 Col11
August Patch Tuesday
Video forgery: An extensive analysis of inter-and intra-frame manipulation al...
Assigned Numbers - 2025 - Bluetooth® Document
Network Security Unit 5.pdf for BCA BBA.
Teaching material agriculture food technology
TokAI - TikTok AI Agent : The First AI Application That Analyzes 10,000+ Vira...
Diabetes mellitus diagnosis method based random forest with bat algorithm
Accuracy of neural networks in brain wave diagnosis of schizophrenia
Per capita expenditure prediction using model stacking based on satellite ima...
Getting Started with Data Integration: FME Form 101
A Presentation on Artificial Intelligence
Reach Out and Touch Someone: Haptics and Empathic Computing
Advanced methodologies resolving dimensionality complications for autism neur...
gpt5_lecture_notes_comprehensive_20250812015547.pdf
Approach and Philosophy of On baking technology
Univ-Connecticut-ChatGPT-Presentaion.pdf

Azure mobile apps

Editor's Notes

  • #33: Microsoft Push Notification Service (MPNS) Windows Push Notification Services (WNS)
  • #34: Microsoft Push Notification Service (MPNS) Windows Push Notification Services (WNS)