Action | Method | URL Path | Data |
---|---|---|---|
Create | POST | endpoint | Yes |
Read | GET | endpoint/{id} | No |
Update | PATCH | endpoint/{id} | Yes |
Delete | DELETE | endpoint/{id} | No |
Required | Should Be | Optional |
---|---|---|
Serialization | REST UI | HAL |
RESTFul Web Services | Views | HTTP Basic Authentication |
JSON API | ||
Graph QL |
cors.config: enabled: true allowedHeaders: ['*'] allowedMethods: ['GET', 'POST', 'PATCH'] allowedOrigins: ['http://trusted-nodejs-site:3000'] exposedHeaders: true maxAge: 1000 supportsCredentials: true
{ "nid": [{ "value" : 1 }], . . "status": [{ "value" : true }], "title": [{ "value" : "The Quick Brown Fox" }], . . "body": [{ "value" : "<p>The quick brown fox....the lazy dogs.</p>\r\n", "format" : "basic_html", "summary" : "" }], . .}
jQuery.ajax({ method: "GET", url: "http://rest-demo/node/1?_format=json", }) .done(function(data, textStatus, jqXHR) { $('h1#title').html(data.title[0]['value']); }) .fail(function(jqXHR, textStatus) { ... })
{ "name" : "joe", "pass" : "test" }
{ "current_user" : { "uid" : "2", "name" : "joe", "roles" : [ "authenticated", "editor", "member" ] }, "csrf_token":"vVlThBvK_K0PNmkcSeNr1ntw8qxADc8v5h17Hugsiok", "logout_token":"zLskC3cKPp1rV00E7jxXihNk1Zk-uaAldsQiHa_VaSM"}
jQuery.ajax({ method: "POST", url: "http://rest-demo/user/login?_format=json", data: JSON.stringify({ name: "joe", pass: "test" }), xhrFields: { withCredentials: true }, }) .done(function(data, textStatus, jqXHR) { csrfToken = data.csrf_token; ... }) .fail(function(jqXHR, textStatus, errorThrown) { ... })
{ "uid" : [{ "value" : 2 }], . . "name" : [{ "value" : "joe" }], "mail" : [{ "value" : "joe@test.com" }], "timezone" : [{ "value" : "Asia/Singapore" }], "status" : [{ "value" : true }], . .}
*
jQuery.ajax({ method: "GET", url: "http://rest-demo/user/2?_format=json", xhrFields: { withCredentials: true }, }) .done(function(data, textStatus, jqXHR ) { $('h1#username').html(data.name[0]['value']); }) .fail(function( jqXHR, textStatus ) { ... })
{ "type" :[{ "target_id" : "article" }], "title" :[{ "value" : "Hello World" }], "body" : [{ "value" : "How are you?" }] }
{ "nid": [{ "value" : 2 }], . . "type": [{ "target_id" : "article", .... }], "status": [{ "value" : true }], "title": [{ "value" : "Hello World" }], . .}
*
jQuery.ajax({ method: "POST", url: "http://rest-demo/node?_format=json", data: JSON.stringify({ "type" :[{ "target_id" : "article" }], "title" :[{ "value" : "Hello World" }], "body" : [{ "value" : "How are you?" }] }), xhrFields: { withCredentials: true }, headers: { "X-CSRF-Token": csrfToken, "Content-Type": "application/json" } }) .done(function(data, textStatus, jqXHR ) { ... }) .fail(function( jqXHR, textStatus ) { ... })
{ "type" : [{ "target_id" : "article" }], "title" : [{ "value" : "Hello Cebu" }] }
{ "nid" : [{ "value" : 2 }], . . "title" : [{ "value" : "Hello Cebu" }], . .}
*
jQuery.ajax({ method: "PATCH", url: "http://rest-demo/node/" + nid + "?_format=json", data: JSON.stringify({ "type" :[{ "target_id" : "article" }], "title" :[{ "value" : "Hello Cebu" }], }), xhrFields: { withCredentials: true }, headers: { "X-CSRF-Token": csrfToken, "Content-Type": "application/json" } }) .done(function(data, textStatus, jqXHR ) { ... }) .fail(function( jqXHR, textStatus ) { ... })
jQuery.ajax({ method: "DELETE", url: "http://rest-demo/node/" + nid + "?_format=json", xhrFields: { withCredentials: true }, headers: { "X-CSRF-Token": csrfToken, "Content-Type": "application/json" } }) .done(function(data, textStatus, jqXHR ) { ... }) .fail(function( jqXHR, textStatus ) { ... })
jQuery.ajax({ method: "GET", url: "http://rest-demo/user/logout", xhrFields: { withCredentials: true }, }) .done(function(data, textStatus, jqXHR ) { ... }) .fail(function( jqXHR, textStatus ) { ... })
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |