Answers for "get request"

1

how to check request method was a get

import axios from 'axios';

const Api = axios.create({
  baseURL: 'https://example/',
});

Api.interceptors.response.use(response => {
  if (response.data.message && response.request._method !== 'GET') {
    console.log(response.data.message);
  }
  return response;
},
Posted by: Guest on February-11-2021
1

http get request format

GET /hello.html HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE5.01; Windows NT)
Host: www.tutorialspoint.com
Accept-Language: en-us
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Posted by: Guest on November-19-2020
0

http request and http response

HTTP request method is made up of four components:
Request Method ==> Get, Post, Put, Delete (these are
the common ones)
Request URL ==> the URL of the resource
Request Header ==> Accept-Language, AcceptEncoding, User-Agent, Host
Request Body ==> This is the data to be sent to the

HTTP RESPONSE
resource HTTP -RESPONSE- method is made up of three
components:
Response Status Code ==> 200, 301, 404, 500
(these are the most common ones)
Response Header Fields ==> Date, Server, LastModified, Content-Type
Response Body ==> This is the data that comes
back to the client from the server.
Posted by: Guest on December-06-2020

Browse Popular Code Answers by Language