2
用的getURL的RESTful API
我想翻譯下面的HTTP GET命令RCurl工作:設置查詢參數在RCurl
curl -G https://api.example.com/resource \
-d "param=value" \
-d "param=value" \
-u 'user:password'
這裏是RCurl利用的getURL我嘗試:
getURL("https://api.example.com/resource",
userpwd ="username:password",param="value",param="value")
第一個代碼塊在我的命令行終端中工作正常,我沒有使用getURL的麻煩,直到我嘗試設置參數;我收到警告信息,說明這些參數是「無法識別的CURL選項」。有任何想法嗎?
張貼了我的RCurl嘗試。 – user2844910