我正試圖在Node-RED中做一個簡單的http get請求。根據在線文檔,我必須將函數中的參數作爲http請求節點的輸入。我的功能看起來像這樣;無法將有效載荷參數傳遞給Node-RED http請求
msg.url = "https://api.socialstudio.radian6.com/v3/posts"
msg.method = "GET"
msg.headers = {'access_token': access_token}
msg.payload = {
'topics': 234243,
'limit': 100,
}
return msg;
但是當我看到服務器響應我得到的錯誤:
["{"error":{"message":"Missing topics parameter.","statusCode":400,"errorCode":"MC-Unknown","requestId":"RnY9E0pbcU1lkiaf"},"meta":null}"][1]
我已經試過其他的API,但我還沒有能夠通過有效載荷參數。
我在做什麼錯?