SlideShare a Scribd company logo
Using RESTful APIs in AngularJS
Presenter: Jyotirmaya Dehury, Mindfire Solutions
Date: 07/30/2014
1. REST Concepts.
2. CRUD(create, read, update, and delete) with REST.
3. Basics of AngularJS
4. Consuming RESTful APIs using ngResource module in AngularJS.
5. Demo App.
Agenda
Presenter: Jyotirmaya Dehury, Mindfire Solutions
REST Concepts
REST is a standard to be followed.
Helps you to build an API that is efficient, easy to use and HIGHLY
UNDERSTANDABLE.
RESOURCE-oriented model to expose their services.
Create a uniform interface by mapping HTTP methods to CRUD
CRUD = Create, Read, Update, Delete
HTTP methods = POST, GET, PUT, DELETE
Create = POST
Read = GET
Update = PUT
Delete = DELETE
Presenter: Jyotirmaya Dehury, Mindfire Solutions
REST Concepts
So instead of API calls such as:
Create – POST: /user/new
Read – GET: /user?id=1
Update – POST: /user/update
Delete – GET: /user/delete?id=1
Simply:
Create – POST: /user (with the variables in the entity-body)
Read – GET: /user/1
Update – PUT: /user/1 (with the variables in the entity-body)
Delete – DELETE: /user/1
Presenter: Jyotirmaya Dehury, Mindfire Solutions
REST Concepts
Consider the following:
POST: http:/test.com/user
GET: http:/test.com/user/1
PUT: http:/test.com/user/1
DELETE: http:/test.com/user/1
POST, GET, PUT, DELETE are the methods
http:/test.com/user, http:/test.com/user/1 are URI’s
user/1 is a user, which is a resource
Understand Resources and REST URI
Presenter: Jyotirmaya Dehury, Mindfire Solutions
REST Concepts
Difference between a resource and a representation:
GET: http:/test.com/user/1 will return a
Representation
{"firstName":"John", "lastName":"Doe"}
Of the resource user:1.
A representation will have a format like JSON or XML.
A client application gets a REPRESENTATION of
the resource using the REST URI
Presenter: Jyotirmaya Dehury, Mindfire Solutions
AngularJS
A great framework to develop SPA web-solutions.
An MVC framework.
A JavaScript framework to develop web applications.
Presenter: Jyotirmaya Dehury, Mindfire Solutions
AngularJS
Angular Features
Presenter: Jyotirmaya Dehury, Mindfire Solutions
Server
APIs
AngularJS
Its a JavaScript object.
Angular services help to build reusable business logic which can be
shared and used across the app.
Angular Services
$http
$resource
$q
$anchorScroll
$cacheFactory
$compile
$parse
$locale
$timeout
$exceptionHandler
$filter
$cookieStore
$route
$routeParams
$location
● Built-In Services
Presenter: Jyotirmaya Dehury, Mindfire Solutions● Custom Services
AngularJS
The ngResource module provides interaction support with RESTful
services via the $resource service.
ngResource
Installation
<script src=”angular.js”>
<script src=”angular-resource.js”>
Presenter: Jyotirmaya Dehury, Mindfire Solutions
AngularJS
Creates a resource object that lets you interact with RESTful server-side
data sources.
$resource
$resource(url, [paramDefaults], [actions], options);
var User = $resource('/user/:userId', {userId:'@id'});
var user = User.get({userId:123});
// GET: /user/123
Presenter: Jyotirmaya Dehury, Mindfire Solutions
AngularJS
Creates a resource object that lets you interact with RESTful server-side
data sources.
$resource
$resource(url, [paramDefaults], [actions], options);
{ 'get' : {method: 'GET' },
'save' : {method: 'POST' },
'query' : {method: 'GET' , isArray:true},
'remove' : {method: 'DELETE' },
'delete' : {method: 'DELETE' } };
Presenter: Jyotirmaya Dehury, Mindfire Solutions
Demo
Presenter: Jyotirmaya Dehury, Mindfire Solutions
Questions?
Presenter: Jyotirmaya Dehury, Mindfire Solutions
http://www.pluralsight.com/
https://docs.angularjs.org/api/ngResource/service/$resource
http://mark-kirby.co.uk/2013/creating-a-true-rest-api/
IBM – RESTful Web Services: The Basics
https://www.youtube.com/watch?v=QHIMygADPPc
References
Presenter: Jyotirmaya Dehury, Mindfire Solutions
Presenter: Jyotirmaya Dehury, Mindfire Solutions
Thank you
www.mindfiresolutions.com
https://www.facebook.com/MindfireSolutions
http://www.linkedin.com/company/mindfire-solutions
http://twitter.com/mindfires

More Related Content

PDF
Angularjs & REST
PDF
REST in AngularJS
ODP
AngularJS and REST - #omrs15 tutorial
PDF
How to connect AngularJS to servers
PPTX
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
ODP
Creating REST Applications with the Slim Micro-Framework by Vikram Vaswani
PDF
RESTful Web Services with Spring MVC
PDF
Building RESTful applications using Spring MVC
Angularjs & REST
REST in AngularJS
AngularJS and REST - #omrs15 tutorial
How to connect AngularJS to servers
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
Creating REST Applications with the Slim Micro-Framework by Vikram Vaswani
RESTful Web Services with Spring MVC
Building RESTful applications using Spring MVC

What's hot (20)

PPTX
Designing REST services with Spring MVC
PDF
Learn REST in 18 Slides
KEY
REST Easy - Building RESTful Services in Zend Framework
PDF
Introduction to AJAX In WordPress
PDF
Spring Mvc Rest
PPTX
Content-centric architectures - case study : Apache Sling
PDF
Consuming REST services with ActiveResource
PPTX
Webinar: AngularJS and the WordPress REST API
PDF
Ch. 11 deploying
PDF
Ng-init
PDF
Ng-init
PDF
Laravel + Restangular Introduction
PDF
Rest Security with JAX-RS
PDF
The Evolution of Airbnb's Frontend
PPTX
Building Your First App with MongoDB
PDF
RESTful OSGi Web Applications Tutorial - Khawaja S Shams & Jeff Norris
DOCX
multiple views and routing
PPT
RESTful services
PPTX
Microservices/dropwizard
PDF
ACL in CodeIgniter
Designing REST services with Spring MVC
Learn REST in 18 Slides
REST Easy - Building RESTful Services in Zend Framework
Introduction to AJAX In WordPress
Spring Mvc Rest
Content-centric architectures - case study : Apache Sling
Consuming REST services with ActiveResource
Webinar: AngularJS and the WordPress REST API
Ch. 11 deploying
Ng-init
Ng-init
Laravel + Restangular Introduction
Rest Security with JAX-RS
The Evolution of Airbnb's Frontend
Building Your First App with MongoDB
RESTful OSGi Web Applications Tutorial - Khawaja S Shams & Jeff Norris
multiple views and routing
RESTful services
Microservices/dropwizard
ACL in CodeIgniter
Ad

Viewers also liked (7)

PPT
Model Binding In ASP.NET MVC
PDF
Criando APIs usando o micro-framework Respect
PPTX
IT MATCH: Vastgoedfinanciering voor zelfstandigen / freelancers in België
PPTX
Introduction to Angularjs
DOCX
Project report of OCR Recognition
PPTX
Optical Character Recognition( OCR )
DOCX
Best topics for seminar
Model Binding In ASP.NET MVC
Criando APIs usando o micro-framework Respect
IT MATCH: Vastgoedfinanciering voor zelfstandigen / freelancers in België
Introduction to Angularjs
Project report of OCR Recognition
Optical Character Recognition( OCR )
Best topics for seminar
Ad

Similar to Using RESTFUL APIs in ANGULARJS (20)

PDF
Coders Workshop: API First Mobile Development Featuring Angular and Node
PPTX
The future of web development write once, run everywhere with angular.js and ...
PDF
The future of web development write once, run everywhere with angular js an...
PDF
Build REST API clients for AngularJS
PDF
20 Most Asked Question on Rest APIs .pdf
PDF
RESTful API in Node.pdf
ODP
MEAN Inside out (with AngularX)
PPTX
JAX-RS. Developing RESTful APIs with Java
PDF
A white paper on Fundamentals and Implementations of Angular JS
PPTX
Beginner's Guide REST Basics - 101 by Smartbear
PDF
Fundamentals and Implementations of Angular JS with renowned Technology Platf...
PPTX
Building-Robust-APIs-ASPNET-Web-API-and-RESTful-Patterns.pptx
PDF
PPTX
Restful webservices
PDF
Rest API Interview Questions PDF By ScholarHat
PPTX
Rest api with node js and express
PDF
Rest API Automation with REST Assured
PPTX
RESTful APIs in .NET
PPTX
The Growing Popularity of AngularJS
Coders Workshop: API First Mobile Development Featuring Angular and Node
The future of web development write once, run everywhere with angular.js and ...
The future of web development write once, run everywhere with angular js an...
Build REST API clients for AngularJS
20 Most Asked Question on Rest APIs .pdf
RESTful API in Node.pdf
MEAN Inside out (with AngularX)
JAX-RS. Developing RESTful APIs with Java
A white paper on Fundamentals and Implementations of Angular JS
Beginner's Guide REST Basics - 101 by Smartbear
Fundamentals and Implementations of Angular JS with renowned Technology Platf...
Building-Robust-APIs-ASPNET-Web-API-and-RESTful-Patterns.pptx
Restful webservices
Rest API Interview Questions PDF By ScholarHat
Rest api with node js and express
Rest API Automation with REST Assured
RESTful APIs in .NET
The Growing Popularity of AngularJS

More from Mindfire Solutions (20)

PDF
Physician Search and Review
PDF
diet management app
PDF
Business Technology Solution
PDF
Remote Health Monitoring
PDF
Influencer Marketing Solution
PPT
High Availability of Azure Applications
PPTX
IOT Hands On
PPTX
Glimpse of Loops Vs Set
ODP
Oracle Sql Developer-Getting Started
PPT
Adaptive Layout In iOS 8
PPT
Introduction to Auto-layout : iOS/Mac
PPT
LINQPad - utility Tool
PPT
Get started with watch kit development
PPTX
Swift vs Objective-C
ODP
Material Design in Android
ODP
Introduction to OData
PPT
Ext js Part 2- MVC
PPT
ExtJs Basic Part-1
PPT
Spring Security Introduction
Physician Search and Review
diet management app
Business Technology Solution
Remote Health Monitoring
Influencer Marketing Solution
High Availability of Azure Applications
IOT Hands On
Glimpse of Loops Vs Set
Oracle Sql Developer-Getting Started
Adaptive Layout In iOS 8
Introduction to Auto-layout : iOS/Mac
LINQPad - utility Tool
Get started with watch kit development
Swift vs Objective-C
Material Design in Android
Introduction to OData
Ext js Part 2- MVC
ExtJs Basic Part-1
Spring Security Introduction

Recently uploaded (20)

PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Transform Your Business with a Software ERP System
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Odoo POS Development Services by CandidRoot Solutions
PPTX
ai tools demonstartion for schools and inter college
PDF
Nekopoi APK 2025 free lastest update
PDF
System and Network Administraation Chapter 3
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PPTX
L1 - Introduction to python Backend.pptx
Operating system designcfffgfgggggggvggggggggg
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Transform Your Business with a Software ERP System
PTS Company Brochure 2025 (1).pdf.......
Softaken Excel to vCard Converter Software.pdf
2025 Textile ERP Trends: SAP, Odoo & Oracle
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Design an Analysis of Algorithms I-SECS-1021-03
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
VVF-Customer-Presentation2025-Ver1.9.pptx
Odoo POS Development Services by CandidRoot Solutions
ai tools demonstartion for schools and inter college
Nekopoi APK 2025 free lastest update
System and Network Administraation Chapter 3
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Which alternative to Crystal Reports is best for small or large businesses.pdf
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
L1 - Introduction to python Backend.pptx

Using RESTFUL APIs in ANGULARJS