Slide 1

Slide 1 text

REST APIs for Absolute Beginners How to make a basic endpoint, use it on the frontend, and convert existing code

Slide 2

Slide 2 text

What are my options?

Slide 3

Slide 3 text

Admin AJAX? add_action("wp_ajax_fruit", "fruit"); add_action("wp_ajax_nopriv_fruit", "fruit"); function fruit() { echo "bananas"; exit; } jQuery.ajax({ type : "get", url : "https://example.com/wp-admin/admin-ajax.php", data : { action: "fruit" }, success: function(response) { // } });

Slide 4

Slide 4 text

A file in your theme/plugin you call?

Slide 5

Slide 5 text

REST API Endpoints

Slide 6

Slide 6 text

Where is the API? /wp-json

Slide 7

Slide 7 text

The rest API is a is a set of pages that return JSON instead of HTML that have no state

Slide 8

Slide 8 text

REST actions GET - viewing POST - adding/updating DELETE - deleting

Slide 9

Slide 9 text

Adding an Endpoint add_action( 'rest_api_init', function () { register_rest_route( 'tomjn/v1', '/test/', array( 'methods' => 'GET', 'callback' => 'tomjn_rest_test' ) ); } ); function tomjn_rest_test() { return "moomins"; }

Slide 10

Slide 10 text

/wp-json/tomjn/v1/test

Slide 11

Slide 11 text

No content

Slide 12

Slide 12 text

Viewing an endpoint jQuery.get( "https://tomjn.com/wp-json/tom/v1/test", function ( data ) { console.log( data ); } );

Slide 13

Slide 13 text

How Do I Accept Parameters? function tomjn_rest_test( \WP_REST_Request $request ) { return "moomins ".$request["val"]; } /wp-json/tomjn/v1/test?val=1 "moomins 1"

Slide 14

Slide 14 text

Converting AJAX calls ● Register an endpoint ● Use the function WP Admin AJAX uses ● Return what you want instead of printing it ● Use the request parameter instead of $_GET $_POST etc ● Update the URLs in your javascript

Slide 15

Slide 15 text

A Useful Helper wp_enqueue_script( 'wp-api' );

Slide 16

Slide 16 text

Creating Content $.ajax( { url: wpApiSettings.root + 'wp/v2/posts', method: 'POST', beforeSend: function ( xhr ) { xhr.setRequestHeader( 'X-WP-Nonce', wpApiSettings.nonce ); }, data:{ 'title' : 'Hello Moon', 'content': 'Test post' } } ).done( function ( response ) { console.log( response ); } );

Slide 17

Slide 17 text

Updating Content $.ajax( { url: wpApiSettings.root + 'wp/v2/posts/1', method: 'POST', beforeSend: function ( xhr ) { xhr.setRequestHeader( 'X-WP-Nonce', wpApiSettings.nonce ); }, data:{ 'title' : 'Updated Moon', 'content': 'even better post' } } ).done( function ( response ) { console.log( response ); } );

Slide 18

Slide 18 text

Deleting Content $.ajax( { url: wpApiSettings.root + 'wp/v2/posts/1', method: 'DELETE', beforeSend: function ( xhr ) { xhr.setRequestHeader( 'X-WP-Nonce', wpApiSettings.nonce ); } } ).done( function ( response ) { console.log( response ); } );

Slide 19

Slide 19 text

Built in Endpoints Posts /wp/v2/posts Post Revisions /wp/v2/revisions Categories /wp/v2/categories Tags /wp/v2/tags Pages /wp/v2/pages Comments /wp/v2/comments Taxonomies /wp/v2/taxonomies Media /wp/v2/media Users /wp/v2/users Post Types /wp/v2/types Post Statuses /wp/v2/statuses Settings /wp/v2/settings

Slide 20

Slide 20 text

Useful Things

Slide 21

Slide 21 text

Adding REST support to CPT 'show_in_rest' => true,

Slide 22

Slide 22 text

WP.org REST API Handbook https://developer.wordpress.org/rest-api

Slide 23

Slide 23 text

Rest API Console

Slide 24

Slide 24 text

No content

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

Questions? Tom J Nowell @tarendai https://tomjn.com Wordpress.com VIP* * we’re hiring