- Learning WordPress REST API
- Sufyan bin Uzayr
- 305字
- 2021-07-14 11:00:48
Issuing requests via Postman
The biggest and most obvious advantage of Postman is that it allows you to turn requests into code snippets that you can use and reuse within your code. Thus, Postman can be used to export requests as JavaScript, and that makes it the perfect fit when working with REST API for WordPress or web development.
Postman lets you send authenticated requests in a native manner. In Google Chrome, once you have installed and activated the Postman extension, you can start sending HTTP requests.
Postman supports multiple HTTP requests, and you can see that directly in the drop-down menu.

Of course, for our purpose, the GET and POST requests are the most important.
To issue an HTTP request via Postman, you need to enter the URL value and specify the parameters, if any. For instance, a GET request to a sample URL would look like as shown in the following screenshot:

The preceding requests give us raw response in HTML code. You can also see the same response in JSON, XML, or text format. However, did our GET request actually fetch our WordPress site? Simply hit the Preview link in the pane and you will see your remote WordPress site in the panel.

This is a pretty basic HTTP request and you are just fetching the WordPress site as it is. Since we will be using REST API for bigger and better queries, why not try such a request using Postman?
Say, we wish to login to our remote WordPress site. You can access the wp-admin
of your site in a similar manner.

For all practical purposes, using Postman to authenticate you via HTTP requests is possible and feasible. However, since our focus is on the usage of REST API in WordPress, let us now get started with some actual code!
- LabVIEW Graphical Programming Cookbook
- Vue.js快速入門與深入實戰(zhàn)
- Java編程指南:基礎(chǔ)知識、類庫應用及案例設計
- Instant 960 Grid System
- R語言數(shù)據(jù)可視化實戰(zhàn)
- Processing互動編程藝術(shù)
- PhpStorm Cookbook
- Drupal 8 Configuration Management
- C語言課程設計
- Mobile Device Exploitation Cookbook
- SQL Server 入門很輕松(微課超值版)
- Java EE架構(gòu)設計與開發(fā)實踐
- 百萬在線:大型游戲服務端開發(fā)
- Python編程入門(第3版)
- C# 7.0本質(zhì)論