Hi. Trying to send a GET request using httr to ClickSend. The url "...rest.clicksend.com/v3/lists" authenticates OK in another platform (FileMaker script). I need to query ...rest.clicksend.com/v3/lists to get a list of lists.
This responds with a code 200
CSUrl <- "https://rest.clicksend.com/"
# delete TK from ClickSend
response <- GET(CSUrl, authenticate("account.com.au","password"))
This responds with a code 401
CSUrl <- "https://rest.clicksend.com/v3/lists"
# delete TK from ClickSend
response <- GET(CSUrl, authenticate("account.com.au","password"))