SlideShare a Scribd company logo
1 of 55
Download to read offline
HOW TO
CREATE A
WEB API
NO ONE WANTS TO USE
By /Karoline Klever @karolikl
THE GAME
NO ONE WANTS TO USE MY API
I have never created a public web API
TAKING A LOOK
at the world of Web APIs...
YOUR CAR HAS ONE
CHUCK NORRIS HAS
ONE
YOUR DOG HAS ONE
THE NUMBER OF WEB
APIS
is increasing fast
1995
"Why do we need a website?"
2000
"Of course we have a website!"
2005
"Why do we need an API?"
2010
"Of course we have an API!"
URI DESIGN
Badly named and inconsistent URIs that violate the
Principle of Least Astonishment will make your web API
just as disappointing as the movie "Mega Shark vs Giant
Octopus"
PRINCIPLE OF LEAST
ASTONISHMENT
"[...] a programmer should try to think of the
behavior that will least surprise someone
who uses the program, rather than that
behavior that is natural from knowing the
inner workings of the program."
PROBLEM #1
INCONSISTENT URI STRUCTURE
We cannot guess the URI of an endpoint based on our
experience with the other endpoints.
PROBLEM #2
URIS ARE NOT HACKABLE
/all_links_for_city_of/chicago/il.json
/all_links_for_city_of/chicago/il.json
/all_links_for_city_of/chicago/il.json
PROBLEM #3
LINK TYPES
/all_links_for_city_of/chicago/il.json
/all_links_for_county_of/cook%20county/i
/primary_links_for_city_of/chicago/il.js
/primary_links_for_county_of/cook%20coun
POSSIBLE SOLUTION
(ONE OF MANY)
/links
/links/il
/links/il/cook%20county
/links/il/cook%20county/chicago
/links/il/cook%20county/chicago?
type=primary
THE GAME
NO ONE WANTS TO USE MY API
Inconsistency
Violation
HTTP VERBS
Why do we need anything other than GET?
THE MOST COMMONLY
USED
GET
PUT
POST
DELETE
SAFE METHODS
"... the convention has been established that
the GET and HEAD methods SHOULD NOT
have the significance of taking an action
other than retrieval. These methods ought
to be considered "safe"."
ARE THEY SAFE?
GET: Yes
PUT: No
POST: No
DELETE: No
IDEMPOTENT METHODS
Methods we can issue the same request against as many
times as we want without changing the result.
ARE THEY IDEMPOTENT?
GET: Yes
PUT: Yes
POST: No
DELETE: Yes
GET CLIMATE
GET/vehicles/{id}/command/climate_state
{
"inside_temp":17.0,
"outside_temp":9.5,
"driver_temp_setting":22.6,
"passenger_temp_setting":22.6,
"is_auto_conditioning_on":false,
"is_front_defroster_on":null,
"is_rear_defroster_on":false,
"fan_status":0
}
OPEN SUNROOF
GET/vehicles/{id}/command/sun_roof_control?state=open
POSSIBLE SOLUTION
GET/vehicles/{id}/command/sun_roof_control
{
"state":"open"
}
PUT/vehicles/{id}/command/sun_roof_control?state=open
{
"result":true
}
THE OTHER VERBS?
GET Returns the state of the sun roof (open/closed)
PUT Open/close the sunroof
POST Not supported, cannot create new sun roof
DELETE Not supported, cannot delete sun roof
THE GAME
NO ONE WANTS TO USE MY API
Only GET
Wrong verb
HTTP STATUS CODES
Everyone just loves an "error in disguise"
PROBLEM #1
DISGUISING YOUR ERRORS
Invalid requests return with a 200 OK status code, giving the
impression that the request was successful.
PROBLEM #2
DISPLAYING YOUR INTERNALS
Including a detailed error report or stacktrace makes your
Web API vulnerable to attack
THE BASICS
200 OK Awesome!
400 Bad Request The user of the API made a
mistake
500 Internal Server
Error
The creator of the API made a
mistake
POSSIBLE SOLUTION
GEThttp://api.worldbank.org/countries/a?format=json
400BadRequest
GEThttp://api.worldbank.org/topic?format:json
400BadRequest
THE GAME
NO ONE WANTS TO USE MY API
Error in disguise
Displaying internals
RESULT FORMATTING
Dictating the format will drive developers away
XML IS ON DECLINE
Hurray!
POSSIBLE SOLUTIONS
URL extensions
Query string parameters
Content negotiation
THE GAME
NO ONE WANTS TO USE MY API
Dictation
VERSIONING
However perfect you make your web API, you're bound to
find a way that's even more perfect before long, and then
you'll need to launch a new version.
Capture5 -> Complete / Cancel2
URL VERSIONING
GEThttps://api.twitter.com/1.1/trends/place.json?id=1
QUERY STRING
PARAMETERS
GEThttp://api-public.netflix.com/catalog/titles/series/7002352?v=1.5
GEThttps://api.foursquare.com/v2/venues/40a55d80f964a52020f31ee3?oauth_token=XXX&v=YYYYM
VENDOR SPECIFIC
ACCEPT HEADER
HEADERAccept:{type}/vnd.{company}.{version}+{type}
HEADERAccept:application/vnd.github.v3+json
CUSTOM REQUEST
HEADER
HEADERx-ms-version:2014-02-14
HEADERapi-version:2
THE GAME
NO ONE WANTS TO USE MY API
No planning
Broken
SUMMARY
URI design
HTTP Verbs
HTTP Status Codes
Result Formatting
Versioning
QUESTIONS?
Thank you!
By / /Karoline Klever @karolikl karolikl@gmail.com

More Related Content

What's hot

Apps for Good 2014 - Buttons
Apps for Good 2014 - ButtonsApps for Good 2014 - Buttons
Apps for Good 2014 - ButtonsDenisMikhaylov
 
How to win in app store optimization
How to win in app store optimization How to win in app store optimization
How to win in app store optimization harisikram84
 
Trends in mobile technology for the event market FEO 2015
Trends in mobile technology for the event market FEO 2015Trends in mobile technology for the event market FEO 2015
Trends in mobile technology for the event market FEO 2015Allan Isfan
 
5 Tips About How to fix slow iPhone
5 Tips About How to fix slow iPhone5 Tips About How to fix slow iPhone
5 Tips About How to fix slow iPhoneSachin FromDev
 
Devcon 5 html vs native
Devcon 5 html vs nativeDevcon 5 html vs native
Devcon 5 html vs nativePlayScreen
 
How To Jailbreak Apple iphone 4?
How To Jailbreak Apple iphone 4?How To Jailbreak Apple iphone 4?
How To Jailbreak Apple iphone 4?watchton65
 
Designing Mobile Apps with HTML5 & CSS3
Designing Mobile Apps with HTML5 & CSS3Designing Mobile Apps with HTML5 & CSS3
Designing Mobile Apps with HTML5 & CSS3Johannes Ippen
 
RuLu 2013 - Web Apps vs Native Apps
RuLu 2013 - Web Apps vs Native AppsRuLu 2013 - Web Apps vs Native Apps
RuLu 2013 - Web Apps vs Native AppsVincent Tourraine
 
Unobstructed Minds: Macbook Air Plus!
Unobstructed Minds: Macbook Air Plus! Unobstructed Minds: Macbook Air Plus!
Unobstructed Minds: Macbook Air Plus! SerinaMHoward
 
The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017Christian Heilmann
 
#PDR15 - Data Analytics and Pebble
#PDR15 - Data Analytics and Pebble#PDR15 - Data Analytics and Pebble
#PDR15 - Data Analytics and PebblePebble Technology
 
I want to be more efficient ! #APIdays
I want to be more efficient ! #APIdaysI want to be more efficient ! #APIdays
I want to be more efficient ! #APIdaysQuentin Adam
 
How to Create a Great Mobile App Experience
How to Create a Great Mobile App ExperienceHow to Create a Great Mobile App Experience
How to Create a Great Mobile App ExperienceChris Beaman
 
Earl's Hobby Shop Mobile Presentation
Earl's Hobby Shop Mobile PresentationEarl's Hobby Shop Mobile Presentation
Earl's Hobby Shop Mobile PresentationEarl214
 

What's hot (18)

Apps for Good 2014 - Buttons
Apps for Good 2014 - ButtonsApps for Good 2014 - Buttons
Apps for Good 2014 - Buttons
 
How to win in app store optimization
How to win in app store optimization How to win in app store optimization
How to win in app store optimization
 
"We want an APP!"
"We want an APP!""We want an APP!"
"We want an APP!"
 
Trends in mobile technology for the event market FEO 2015
Trends in mobile technology for the event market FEO 2015Trends in mobile technology for the event market FEO 2015
Trends in mobile technology for the event market FEO 2015
 
5 Tips About How to fix slow iPhone
5 Tips About How to fix slow iPhone5 Tips About How to fix slow iPhone
5 Tips About How to fix slow iPhone
 
Devcon 5 html vs native
Devcon 5 html vs nativeDevcon 5 html vs native
Devcon 5 html vs native
 
How To Jailbreak Apple iphone 4?
How To Jailbreak Apple iphone 4?How To Jailbreak Apple iphone 4?
How To Jailbreak Apple iphone 4?
 
Designing Mobile Apps with HTML5 & CSS3
Designing Mobile Apps with HTML5 & CSS3Designing Mobile Apps with HTML5 & CSS3
Designing Mobile Apps with HTML5 & CSS3
 
Bus 356 show and tell
Bus 356 show and tellBus 356 show and tell
Bus 356 show and tell
 
RuLu 2013 - Web Apps vs Native Apps
RuLu 2013 - Web Apps vs Native AppsRuLu 2013 - Web Apps vs Native Apps
RuLu 2013 - Web Apps vs Native Apps
 
Unobstructed Minds: Macbook Air Plus!
Unobstructed Minds: Macbook Air Plus! Unobstructed Minds: Macbook Air Plus!
Unobstructed Minds: Macbook Air Plus!
 
The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017The Progressive Web and its New Challenges - Confoo Montréal 2017
The Progressive Web and its New Challenges - Confoo Montréal 2017
 
#PDR15 - Data Analytics and Pebble
#PDR15 - Data Analytics and Pebble#PDR15 - Data Analytics and Pebble
#PDR15 - Data Analytics and Pebble
 
Apple: Lessons from the Past
Apple: Lessons from the PastApple: Lessons from the Past
Apple: Lessons from the Past
 
I want to be more efficient ! #APIdays
I want to be more efficient ! #APIdaysI want to be more efficient ! #APIdays
I want to be more efficient ! #APIdays
 
Taking the P out of PWA
Taking the P out of PWATaking the P out of PWA
Taking the P out of PWA
 
How to Create a Great Mobile App Experience
How to Create a Great Mobile App ExperienceHow to Create a Great Mobile App Experience
How to Create a Great Mobile App Experience
 
Earl's Hobby Shop Mobile Presentation
Earl's Hobby Shop Mobile PresentationEarl's Hobby Shop Mobile Presentation
Earl's Hobby Shop Mobile Presentation
 

Viewers also liked

Video on social: Learn the 3 secrets to grabbing the attention of your audience
Video on social: Learn the 3 secrets to grabbing the attention of your audienceVideo on social: Learn the 3 secrets to grabbing the attention of your audience
Video on social: Learn the 3 secrets to grabbing the attention of your audienceSean Dent
 
Shaping your thoughts. shapechanger.
Shaping your thoughts. shapechanger.Shaping your thoughts. shapechanger.
Shaping your thoughts. shapechanger.Gwenda Smith
 
RSI: What Is It? And Why Does the DOE Care About It?
RSI: What Is It? And Why Does the DOE Care About It?RSI: What Is It? And Why Does the DOE Care About It?
RSI: What Is It? And Why Does the DOE Care About It?Fred Feldon
 
Agile and Innovation, Hand-in-hand at Atlassian
Agile and Innovation, Hand-in-hand at AtlassianAgile and Innovation, Hand-in-hand at Atlassian
Agile and Innovation, Hand-in-hand at AtlassianNicholas Muldoon
 
BITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTS
BITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTSBITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTS
BITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTSSteven Rhyner
 
Fusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.comFusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.comRich Goldstein
 
Ido Noyman - Work Samples
Ido Noyman - Work SamplesIdo Noyman - Work Samples
Ido Noyman - Work SamplesIdo Noyman
 
CodeWeek - Explaining how to Code to 12 yr old kids
CodeWeek - Explaining how to Code to 12 yr old kidsCodeWeek - Explaining how to Code to 12 yr old kids
CodeWeek - Explaining how to Code to 12 yr old kidsMike Miello
 
Photos Originales
Photos OriginalesPhotos Originales
Photos OriginalesNickie
 
10 things about bandung
10 things about bandung10 things about bandung
10 things about bandungTri Damayantho
 
Hiring General Manager
Hiring General ManagerHiring General Manager
Hiring General Managerseazworks
 
Why a Dedicated Network for IP Storage? - Dr. Chip Copper
Why a Dedicated Network for IP Storage? - Dr. Chip CopperWhy a Dedicated Network for IP Storage? - Dr. Chip Copper
Why a Dedicated Network for IP Storage? - Dr. Chip Copperscoopnewsgroup
 
Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...
Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...
Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...Jennifer Picquette
 

Viewers also liked (17)

Video on social: Learn the 3 secrets to grabbing the attention of your audience
Video on social: Learn the 3 secrets to grabbing the attention of your audienceVideo on social: Learn the 3 secrets to grabbing the attention of your audience
Video on social: Learn the 3 secrets to grabbing the attention of your audience
 
Mircointeractions
MircointeractionsMircointeractions
Mircointeractions
 
돌봐줄개
돌봐줄개돌봐줄개
돌봐줄개
 
Shaping your thoughts. shapechanger.
Shaping your thoughts. shapechanger.Shaping your thoughts. shapechanger.
Shaping your thoughts. shapechanger.
 
RSI: What Is It? And Why Does the DOE Care About It?
RSI: What Is It? And Why Does the DOE Care About It?RSI: What Is It? And Why Does the DOE Care About It?
RSI: What Is It? And Why Does the DOE Care About It?
 
Agile and Innovation, Hand-in-hand at Atlassian
Agile and Innovation, Hand-in-hand at AtlassianAgile and Innovation, Hand-in-hand at Atlassian
Agile and Innovation, Hand-in-hand at Atlassian
 
BITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTS
BITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTSBITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTS
BITCOIN-TRACKING SYSTEM USED BY DANISH POLICE TO MAKE DRUG TRAFFICKERS ARRESTS
 
Fusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.comFusionops UX position (richard.goldstein@fusionops.com
Fusionops UX position (richard.goldstein@fusionops.com
 
Ido Noyman - Work Samples
Ido Noyman - Work SamplesIdo Noyman - Work Samples
Ido Noyman - Work Samples
 
Crowdfunding formazione progetti 2017
Crowdfunding formazione progetti 2017Crowdfunding formazione progetti 2017
Crowdfunding formazione progetti 2017
 
Actividad uno
Actividad unoActividad uno
Actividad uno
 
CodeWeek - Explaining how to Code to 12 yr old kids
CodeWeek - Explaining how to Code to 12 yr old kidsCodeWeek - Explaining how to Code to 12 yr old kids
CodeWeek - Explaining how to Code to 12 yr old kids
 
Photos Originales
Photos OriginalesPhotos Originales
Photos Originales
 
10 things about bandung
10 things about bandung10 things about bandung
10 things about bandung
 
Hiring General Manager
Hiring General ManagerHiring General Manager
Hiring General Manager
 
Why a Dedicated Network for IP Storage? - Dr. Chip Copper
Why a Dedicated Network for IP Storage? - Dr. Chip CopperWhy a Dedicated Network for IP Storage? - Dr. Chip Copper
Why a Dedicated Network for IP Storage? - Dr. Chip Copper
 
Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...
Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...
Licence Collaborateur des activités internationales - Sorbonne Paris IV. CFA ...
 

Similar to How to create a Web API no one wants to use

Mobile Quality Night Vienna 2015 - Testobject Appium in der Cloud
Mobile Quality Night Vienna 2015 - Testobject Appium in der CloudMobile Quality Night Vienna 2015 - Testobject Appium in der Cloud
Mobile Quality Night Vienna 2015 - Testobject Appium in der CloudRudolf Grötz
 
Your Apps on the Cloud - What it really takes
Your Apps on the Cloud - What it really takes Your Apps on the Cloud - What it really takes
Your Apps on the Cloud - What it really takes Uri Cohen
 
From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)Bramus Van Damme
 
What's next? J and beyond keynote 2015
What's next? J and beyond keynote 2015What's next? J and beyond keynote 2015
What's next? J and beyond keynote 2015Christian Heilmann
 
Android Lollipop internals and inferiority complex droidcon.hr 2015
Android Lollipop internals and inferiority complex droidcon.hr 2015 Android Lollipop internals and inferiority complex droidcon.hr 2015
Android Lollipop internals and inferiority complex droidcon.hr 2015 Aleksander Piotrowski
 
Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015Aleksander Piotrowski
 
Ruby on Rails - The Best Track for your Start Up
Ruby on Rails - The Best Track for your Start UpRuby on Rails - The Best Track for your Start Up
Ruby on Rails - The Best Track for your Start UpPrateek Saxena
 
Google Glass Mirror API Setup
Google Glass Mirror API SetupGoogle Glass Mirror API Setup
Google Glass Mirror API SetupDiana Michelle
 
Tools that help and speed up RWD dev
Tools that help  and speed up RWD devTools that help  and speed up RWD dev
Tools that help and speed up RWD devMatjaž Korošec
 
Socket applications
Socket applicationsSocket applications
Socket applicationsJoão Moura
 
Best practices for crafting high quality PHP apps - PHP UK 2019
Best practices for crafting high quality PHP apps - PHP UK 2019Best practices for crafting high quality PHP apps - PHP UK 2019
Best practices for crafting high quality PHP apps - PHP UK 2019James Titcumb
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaChristian Heilmann
 
Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013Jon Arne Sæterås
 
b4usolution_Appium Mobile Automation Testing Made Awesome
b4usolution_AppiumMobile Automation Testing Made Awesomeb4usolution_AppiumMobile Automation Testing Made Awesome
b4usolution_Appium Mobile Automation Testing Made Awesomeb4usolution .
 
Using APEX to Create a Mobile User Interface for Enterprise Manager 12c
Using APEX to Create a Mobile User Interface for Enterprise Manager 12cUsing APEX to Create a Mobile User Interface for Enterprise Manager 12c
Using APEX to Create a Mobile User Interface for Enterprise Manager 12cGokhan Atil
 
Rocket packs on escalators - stop messing with progressive enhancement
Rocket packs on escalators - stop messing with progressive enhancementRocket packs on escalators - stop messing with progressive enhancement
Rocket packs on escalators - stop messing with progressive enhancementChristian Heilmann
 
PHP and Platform Independance in the Cloud
PHP and Platform Independance in the CloudPHP and Platform Independance in the Cloud
PHP and Platform Independance in the CloudZendCon
 

Similar to How to create a Web API no one wants to use (20)

Coffee script
Coffee scriptCoffee script
Coffee script
 
Mobile Quality Night Vienna 2015 - Testobject Appium in der Cloud
Mobile Quality Night Vienna 2015 - Testobject Appium in der CloudMobile Quality Night Vienna 2015 - Testobject Appium in der Cloud
Mobile Quality Night Vienna 2015 - Testobject Appium in der Cloud
 
Your Apps on the Cloud - What it really takes
Your Apps on the Cloud - What it really takes Your Apps on the Cloud - What it really takes
Your Apps on the Cloud - What it really takes
 
From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)From Idea to App (or “How we roll at Small Town Heroes”)
From Idea to App (or “How we roll at Small Town Heroes”)
 
What's next? J and beyond keynote 2015
What's next? J and beyond keynote 2015What's next? J and beyond keynote 2015
What's next? J and beyond keynote 2015
 
Android Lollipop internals and inferiority complex droidcon.hr 2015
Android Lollipop internals and inferiority complex droidcon.hr 2015 Android Lollipop internals and inferiority complex droidcon.hr 2015
Android Lollipop internals and inferiority complex droidcon.hr 2015
 
Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015Android 5.0 internals and inferiority complex droidcon.de 2015
Android 5.0 internals and inferiority complex droidcon.de 2015
 
Ruby on Rails - The Best Track for your Start Up
Ruby on Rails - The Best Track for your Start UpRuby on Rails - The Best Track for your Start Up
Ruby on Rails - The Best Track for your Start Up
 
How to Make Android Native Application
How to Make Android Native ApplicationHow to Make Android Native Application
How to Make Android Native Application
 
Google Glass Mirror API Setup
Google Glass Mirror API SetupGoogle Glass Mirror API Setup
Google Glass Mirror API Setup
 
Tools that help and speed up RWD dev
Tools that help  and speed up RWD devTools that help  and speed up RWD dev
Tools that help and speed up RWD dev
 
Socket applications
Socket applicationsSocket applications
Socket applications
 
Best practices for crafting high quality PHP apps - PHP UK 2019
Best practices for crafting high quality PHP apps - PHP UK 2019Best practices for crafting high quality PHP apps - PHP UK 2019
Best practices for crafting high quality PHP apps - PHP UK 2019
 
Fixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World RomaniaFixing the mobile web - Internet World Romania
Fixing the mobile web - Internet World Romania
 
Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013Mobile is slow - Over the Air 2013
Mobile is slow - Over the Air 2013
 
b4usolution_Appium Mobile Automation Testing Made Awesome
b4usolution_AppiumMobile Automation Testing Made Awesomeb4usolution_AppiumMobile Automation Testing Made Awesome
b4usolution_Appium Mobile Automation Testing Made Awesome
 
Using APEX to Create a Mobile User Interface for Enterprise Manager 12c
Using APEX to Create a Mobile User Interface for Enterprise Manager 12cUsing APEX to Create a Mobile User Interface for Enterprise Manager 12c
Using APEX to Create a Mobile User Interface for Enterprise Manager 12c
 
MnSearch Summit 2018 - Rob Ousbey – The Evolution of SEO: Split-Testing for S...
MnSearch Summit 2018 - Rob Ousbey – The Evolution of SEO: Split-Testing for S...MnSearch Summit 2018 - Rob Ousbey – The Evolution of SEO: Split-Testing for S...
MnSearch Summit 2018 - Rob Ousbey – The Evolution of SEO: Split-Testing for S...
 
Rocket packs on escalators - stop messing with progressive enhancement
Rocket packs on escalators - stop messing with progressive enhancementRocket packs on escalators - stop messing with progressive enhancement
Rocket packs on escalators - stop messing with progressive enhancement
 
PHP and Platform Independance in the Cloud
PHP and Platform Independance in the CloudPHP and Platform Independance in the Cloud
PHP and Platform Independance in the Cloud
 

Recently uploaded

Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...Chandu841456
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating SystemRashmi Bhat
 
National Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdfNational Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdfRajuKanojiya4
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptSAURABHKUMAR892774
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxsiddharthjain2303
 
Steel Structures - Building technology.pptx
Steel Structures - Building technology.pptxSteel Structures - Building technology.pptx
Steel Structures - Building technology.pptxNikhil Raut
 
Industrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.pptIndustrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.pptNarmatha D
 
home automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadhome automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadaditya806802
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...asadnawaz62
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleAlluxio, Inc.
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating SystemRashmi Bhat
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfAsst.prof M.Gokilavani
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating SystemRashmi Bhat
 
Solving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.pptSolving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.pptJasonTagapanGulla
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catcherssdickerson1
 

Recently uploaded (20)

Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...An experimental study in using natural admixture as an alternative for chemic...
An experimental study in using natural admixture as an alternative for chemic...
 
Virtual memory management in Operating System
Virtual memory management in Operating SystemVirtual memory management in Operating System
Virtual memory management in Operating System
 
National Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdfNational Level Hackathon Participation Certificate.pdf
National Level Hackathon Participation Certificate.pdf
 
Arduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.pptArduino_CSE ece ppt for working and principal of arduino.ppt
Arduino_CSE ece ppt for working and principal of arduino.ppt
 
POWER SYSTEMS-1 Complete notes examples
POWER SYSTEMS-1 Complete notes  examplesPOWER SYSTEMS-1 Complete notes  examples
POWER SYSTEMS-1 Complete notes examples
 
Energy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptxEnergy Awareness training ppt for manufacturing process.pptx
Energy Awareness training ppt for manufacturing process.pptx
 
Steel Structures - Building technology.pptx
Steel Structures - Building technology.pptxSteel Structures - Building technology.pptx
Steel Structures - Building technology.pptx
 
Industrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.pptIndustrial Safety Unit-IV workplace health and safety.ppt
Industrial Safety Unit-IV workplace health and safety.ppt
 
home automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasadhome automation using Arduino by Aditya Prasad
home automation using Arduino by Aditya Prasad
 
complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...complete construction, environmental and economics information of biomass com...
complete construction, environmental and economics information of biomass com...
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
Correctly Loading Incremental Data at Scale
Correctly Loading Incremental Data at ScaleCorrectly Loading Incremental Data at Scale
Correctly Loading Incremental Data at Scale
 
Input Output Management in Operating System
Input Output Management in Operating SystemInput Output Management in Operating System
Input Output Management in Operating System
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdfCCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
CCS355 Neural Networks & Deep Learning Unit 1 PDF notes with Question bank .pdf
 
Main Memory Management in Operating System
Main Memory Management in Operating SystemMain Memory Management in Operating System
Main Memory Management in Operating System
 
Solving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.pptSolving The Right Triangles PowerPoint 2.ppt
Solving The Right Triangles PowerPoint 2.ppt
 
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
young call girls in Rajiv Chowk🔝 9953056974 🔝 Delhi escort Service
 
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor CatchersTechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
TechTAC® CFD Report Summary: A Comparison of Two Types of Tubing Anchor Catchers
 

How to create a Web API no one wants to use