Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

axios

const fetch = async () => {
    const response = await axios
      .get("https://fakestoreapi.com/products")
      .catch((err) => {
        console.log("api error", err);
      });
    console.log(response);
  };
Source by flaviocopes.com #
 
PREVIOUS NEXT
Tagged: #axios
ADD COMMENT
Topic
Name
5+3 =