use mock api
Here's the link to my api that you can use as a mock server
To contribute to its documentation on github, here's the github repository url:
https://github.com/InnocentWahome/Burgers-Mock-API
https://burgers-api.herokuapp.com/burgers
use mock api
Here's the link to my api that you can use as a mock server
To contribute to its documentation on github, here's the github repository url:
https://github.com/InnocentWahome/Burgers-Mock-API
https://burgers-api.herokuapp.com/burgers
dummy api json
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
console.log(xhr.responseText);
};
xhr.send();
what mock api
We can use mock API server during
development and testing when live
data is unavailable or not reliable.
While developers designing the API
we can use mock API's to work on.
Once end points are available we can
implement the endpoints to our test script.
I am using Postman for mocking API.
I create mock server with GET request
to postman-echo.com/get endpoint.
use mock api
Here's the link to my api that you can use as a mock server
To contribute to its documentation on github, here's the github repository url:
https://github.com/InnocentWahome/Burgers-Mock-API
https://burgers-api.herokuapp.com/burgers
dummy api json
var xhr = new XMLHttpRequest();
xhr.open("GET", "https://reqres.in/api/products/3", true);
xhr.onload = function(){
console.log(xhr.responseText);
};
xhr.send();
what mock api
We can use mock API server during
development and testing when live
data is unavailable or not reliable.
While developers designing the API
we can use mock API's to work on.
Once end points are available we can
implement the endpoints to our test script.
I am using Postman for mocking API.
I create mock server with GET request
to postman-echo.com/get endpoint.
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us