Displaying 1 result from an estimated 1 matches for "cosson".
Did you mean:
bosson
2016 Apr 01
1
Using R for cURL commands
...uting the curl command, however, I'm open to other approaches. The method I've been using so far:
I found some information online suggesting i'd use this code:
*js is a json from my R environment
Library(RCurl)
postForm("https://MYWEBSITE.eu/api/v2/organisations/abc/projects/cosson/datasets/DATABASE",
.opts = list(postfields = js,
httpheader = c('Content-Type' = 'application/json', Accept = 'application/json'),
userpwd = "name:pwd",
ssl.verifypeer = FALSE))
(userpwd and url have been changed to hide sensitive information)
This lea...