4
所以基本上,我想要得到的RCurl相當於下面捲曲呼叫:頁眉和JSON數據RCurl POST請求
curl -H "AUTH-KEY: soanclCNdnLDcnlNc" -H "Content-Type: application/json" -X POST -d '{"documents":["http://localhost:3000/documents/2","http://localhost:3000/documents/4"]}' http://localhost:3000/documents/download?format=zip
我設法得到這個東西,但它總是更大比捲曲調用所產生的並且不能被解壓縮,並且不能在我的生活中發現它是什麼。
x= list(items=c("http://localhost:3000/documents/2", "http://localhost:3000/documents4"))
headers <- list('AUTH-KEY' = "soanclCNdnLDcnlNc", 'Accept' = 'application/json', 'Content-Type' = 'application/json')
postForm("http://localhost:3000/documents/download?format=zip", .opts=list(postfields=toJSON(x), httpheader=headers))
(1)在你的curl調用中你有「文檔」,但是在你的第一行R代碼中你有「items」。 (2)您是否確認'toJSON'給您正確的內容? – Thomas
這在我看來實際上只是一個錯誤。事實證明,我正在處理我錯誤地回來的內容。我使用標準的write()R函數來寫入文件,而不是writeBin(),它生成了我想要的正確的zip文件。儘管歡呼 – crypts