3
我想創建一個wordpress rest api文章。隨着捲髮和郵差,我得到以下回應。wordpress rest api的行爲像沒有數據發送
{"code":"empty_content","message":"Content, title, and excerpt are empty.","data":{"status":400}}
我curl命令是
curl -X POST --user admin:secret http://mysite.local/wp-json/wp/v2/posts/ -d '{"post_title":"My New Title","Content":"the stuff","excerpt":"something"}'
我知道我必須在這裏失去了一些基本的東西。它的行爲就像沒有發佈任何數據。有任何想法嗎?