Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

axios post

axios.post('https:sample-endpoint.com/user', {
    Name: 'Fred',
    Age: '23'
  })
  .then(function (response) {
    console.log(response);
  })
Source by github.com #
 
PREVIOUS NEXT
Tagged: #axios #post
ADD COMMENT
Topic
Name
7+5 =