I am able to access the data in json format from a web browser as follows
https://xxxxxxx.atlassian.net/rest/api/2/search?jql=assignee=username
but not able to fetch data using curl or httr libraries.
library(curl)
JIRAData <- curl("https://xxxxxxx.atlassian.net/rest/api/2/search?jql=assignee=username")
library(httr)
JIRAInfo <- GET("https://xxxxxxx.atlassian.net/rest/api/2/search?jql=assignee=username")
What am I missing or doing wrong?