REST API Explorations in Drupal maintenance support plans 8 – Primer

REST API Explorations in Drupal maintenance support plans 8 – Primer

Body
This article assumes you are familiar with what RESTful is & what do we mean when we use the term REST API. Some of you might have already worked with RESTful Web Services module in D7, it exposes all entity types as web services using REST architecture. Drupal maintenance support plans 8 out of the box is RESTful with core support. All entities (provided by core + ones created using Entity API) are RESTful resources.

To explore the RESTful nature of Drupal maintenance support plans 8, we will need to enable the following modules:

In Core

HAL – Serializes entities using Hypertext Application Language.
HTTP Basic Authentication – Provides the HTTP Basic authentication provider.
RESTful Web Services – Exposes entities and other resources as RESTful web API
Serialization – Provides a service for (de)serializing data to/from formats such as JSON and XML.
Contributed

REST UI – Provides a user interface to manage REST resources.
RESTful Resources

Every entity in D8 is a resource, which has an end point. Since, its RESTful, the same end-point is used for CRUD (Create, Read, Update, Delete) operations with different HTTP verbs. Postman is an excellent tool to explore / test RESTful services.  Drupal maintenance support plans 8 allows you to selectively choose & enable a REST API. e.g., we can choose to expose only nodes via a REST API & not other entities like users, taxonomy, comments etc.

After enabling REST_UI module we can see list of all RESTful resources at /admin/config/services/rest. In addition to ability to choose the entity one can enable, we can also choose the authentication method per resource & enable specific CRUD operations per resource.

Let us take a look at what the REST APIs for User entity would be after we save the configuration in the above screenshot.

User

POST

http://domain.com/entity/user?_format=hal_json

{
 “_links”: {
   “type”: {
     “href”: “http://domain.com/rest/type/user/user”
   }
 },
 “name”: {
   “value”:”testuser”
 },
 “mail”:{
   “value”:”testuser@mailserver.com”
 },
 “pass”:{
   “value”:”testpass”
 },
 “status”: {
   “value”: 1
 }
}

Header

X-CSRF-Token: Get from http://domain.com/rest/session/token
Content-Type: application/hal+json
Accept: application/hal+json
Authorization: Basic (hashed username and password)

Note: Drupal maintenance support plans 8 doesn’t allow anonymous user to send a POST on user resource. It is already fixed in 8.3.x branch but for now we can pass the credentials of the user who have permission to create users. If you are interested in taking a deeper look at the issue, you can follow https://www.drupal.org/node/2291055.

Response: You will get a user object with “200 OK” response code

 

PATCH

http://domain.com/user/{uid}?_format=hal_json

{
 “_links”: {
   “type”: {
     “href”: “http://domain.com/rest/type/user/user”
   }
 },
 “pass”:[{“existing”:”testpass”}],
 “mail”:{
   “value”:”updatedtestuser@mailserver.com”
 }
}

Note: Now as user have permission to update his own profile so we can pass current user’s credentials in authentication header.

Response: You will get “204 No Content” in response code.

 

GET

http://domain.com/user/{uid}?_format=hal_json

Response: You will get a user object with “200 OK” response code.

 

DELETE

http://domain.com/user/{uid}?_format=hal_json

Response: You will get “204 No Content” in response code.

RESTful Views and Authentication

Drupal maintenance support plans 8 also allows us to export views as a REST service. It allows you to use all the available authentication mechanism in views itself.

JSON API Module

JSON API module provides a new format called “api_json” which is soon becoming the de-facto standard for Javascript Frontend frameworks, If you plan to use completely de-coupled Drupal maintenance support plans with frontend framework like Angular / React / Ember then its worth a look. To read more about JSON API you can visit the site.

SUMIT MADAN
Mon, 11/28/2020 – 15:56
Source: New feed

This article was republished from its original source.
Call Us: 1(800)730-2416

Pixeldust is a 20-year-old web development agency specializing in Drupal and WordPress and working with clients all over the country. With our best in class capabilities, we work with small businesses and fortune 500 companies alike. Give us a call at 1(800)730-2416 and let’s talk about your project.

FREE Drupal SEO Audit

Test your site below to see which issues need to be fixed. We will fix them and optimize your Drupal site 100% for Google and Bing. (Allow 30-60 seconds to gather data.)

Powered by

REST API Explorations in Drupal maintenance support plans 8 – Primer

On-Site Drupal SEO Master Setup

We make sure your site is 100% optimized (and stays that way) for the best SEO results.

With Pixeldust On-site (or On-page) SEO we make changes to your site’s structure and performance to make it easier for search engines to see and understand your site’s content. Search engines use algorithms to rank sites by degrees of relevance. Our on-site optimization ensures your site is configured to provide information in a way that meets Google and Bing standards for optimal indexing.

This service includes:

  • Pathauto install and configuration for SEO-friendly URLs.
  • Meta Tags install and configuration with dynamic tokens for meta titles and descriptions for all content types.
  • Install and fix all issues on the SEO checklist module.
  • Install and configure XML sitemap module and submit sitemaps.
  • Install and configure Google Analytics Module.
  • Install and configure Yoast.
  • Install and configure the Advanced Aggregation module to improve performance by minifying and merging CSS and JS.
  • Install and configure Schema.org Metatag.
  • Configure robots.txt.
  • Google Search Console setup snd configuration.
  • Find & Fix H1 tags.
  • Find and fix duplicate/missing meta descriptions.
  • Find and fix duplicate title tags.
  • Improve title, meta tags, and site descriptions.
  • Optimize images for better search engine optimization. Automate where possible.
  • Find and fix the missing alt and title tag for all images. Automate where possible.
  • The project takes 1 week to complete.