Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
INTRODUCTION TO
WORDPRESS REST API
Slide 2
Slide 2 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
Hello!
Tester @ OnTheGoSystems
Follow me @kouratoras
Slide 3
Slide 3 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
WORDPRESS REST API
Slide 4
Slide 4 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
WORDPRESS REST API
What else? :)
Slide 5
Slide 5 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
WORDPRESS REST API
Application Program Interface
Slide 6
Slide 6 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
WORDPRESS REST API
REpresentational State Transfer
Slide 7
Slide 7 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
• Actions
• GET, POST, PUT, DELETE
• Resources
• GET /posts/
• GET /posts/12
• POST /posts/
• PUT /posts/13
• DELETE /posts/14
Slide 8
Slide 8 text
No content
Slide 9
Slide 9 text
No content
Slide 10
Slide 10 text
No content
Slide 11
Slide 11 text
No content
Slide 12
Slide 12 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
WORDPRESS REST API
Slide 13
Slide 13 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
PHP API
the_post(), the_content(), the_title(), etc.
Slide 14
Slide 14 text
No content
Slide 15
Slide 15 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
PHP API
Slide 16
Slide 16 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
PHP API
Slide 17
Slide 17 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
REST PHP API
Slide 18
Slide 18 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
• Javascript
• Angular, React, Ember, Backbone, Node,…
• Single Page Applications
• Better interfaces
• Mobile integration
• Third party applications
Slide 19
Slide 19 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
HISTORY
Slide 20
Slide 20 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
• JSON API plugin
• Ruby on Rails front-end (2009)
• WP REST API
• Google Summer of Code 2013
• Basic infrastructure in WordPress 4.4
• Full merge in 4.5? 4.6? 4.7?
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
• As any other WordPress plugin
• Download, install and activate
• https://wordpress.org/plugins/rest-api/
• Ready!
Slide 24
Slide 24 text
Konstantinos Kouratoras - 5th Crete WordPress Meetup - April 2016
EXAMPLE