I'm trying to make a request from httr package in R:
POST(url = "https://website.com/api/waterfalls",
query = list(itemsPerPage="10", page="1", sortAsc="true", sortBy="priority"),
add_headers(c('Authorization'='Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyaWQiOiI1NmZhNzZiMzMxMTY5NzAwMDIwMDAwNDIifQ.CHjH9jQHy2-B68aBRijoZptCAtVLm9U_Z80f_XYaPEc'
'Accept-Encoding' = 'gzip, deflate, sdch, br',
'Accept-Language' = 'en-US,en;q=0.8',
'User-Agent' = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36',
'Accept' = 'application/json, text/javascript, */*; q=0.01',
'Referer' = 'http://cnn.com',
'X-Requested-With' = 'XMLHttpRequest',
'Connection' = 'keep-alive',
'Authority' = 'website.com')))
This doesn't work. I think the problem is that the syntax for add_headers() is not correct, do you know how to use multiple headers in POST() in httr?
?add_headers
suggestadd_headers(a = 1, b = 2)
oradd_headers(.headers = c(a = "1", b = "2"))
and notadd_headers(c(a = "1", b = "2"))
. – Gonna