getJSON questions

Is it possible to use post method request using getJSON and also can we have payload body for getJSON call?

for example in JS =>

axios({
        method: 'post',
        url: 'http://localhost:3000/getData',
        headers: {},
        data: {
          "name": "ABC"
        },
      })

See https://gohugo.io/hugo-pipes/introduction/#remote-options.

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.