I\'m implementing an R wrapper around PiCloud\'s REST API using the RCurl package to make HTTP(S) requests to the API server. The API uses Basic HTTP authentication to verif
The equivalent code in httr is:
library(httr) GET("https://api.picloud.com/job/?jids=12", authenticate("key", "secret"))