Skip to main content
replaced http://stackoverflow.com/ with https://stackoverflow.com/
Source Link
URL Rewriter Bot
URL Rewriter Bot

The curl error is due to braces {} and square brackets [] being special curl globbing characters. Use the -g option to turn off globbing and you should be fine.

Same issue as this post: How to PUT a json object with an array using curlHow to PUT a json object with an array using curl

The curl error is due to braces {} and square brackets [] being special curl globbing characters. Use the -g option to turn off globbing and you should be fine.

Same issue as this post: How to PUT a json object with an array using curl

The curl error is due to braces {} and square brackets [] being special curl globbing characters. Use the -g option to turn off globbing and you should be fine.

Same issue as this post: How to PUT a json object with an array using curl

Source Link
Yonik
  • 2.4k
  • 1
  • 18
  • 15

The curl error is due to braces {} and square brackets [] being special curl globbing characters. Use the -g option to turn off globbing and you should be fine.

Same issue as this post: How to PUT a json object with an array using curl