我的問題陳述: 我想知道當通過android設備提交表單時,評估參數的JSON輸入是什麼?評分參數從Android設備到WordPress網站的JSON輸入?
我已經試過:
POST URL: http://testwordpresssite.com/wp-json/wp/v2/comments
JSON Input:
{
"post": "1555",
"content": "this is test comment from JSON",
"author_name": "this is test",
"author_email": "[email protected]",
"overall":"4",
"quality":"3",
"support":"2",
"price":"1",
"products":"5"
}
我的評價參數整體質量,支持,價格和產品。 內容正在存儲在數據庫中,但不是評級參數。 我正在使用globo 1.1.7 WordPress主題。
附加信息: 我們已經在那裏事後審查和星級分別存儲wp_comments和wp_commentmeta兩個表。
如果您需要任何其他信息,請讓我知道。
在此先感謝。
你試圖發送,而不是串號碼 - 例如'「整體」:4,「質量」:3,...'? –
JSON輸入應該位於鍵值對中。 – Amit