Replies: 1 comment 7 replies
-
That error is because the response is not parseable as JSON so I expect the response is not what you think, if you look on the exception you should be able to get the original text, or call it with asString to see. Maybe you need a application/json accept header? |
Beta Was this translation helpful? Give feedback.
7 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi guys, thanks for the library you made, looks really clean.
But I got a question.
I am trying to retrieve data from jira. The response object has following format.
{
"size": 1,
"start": 0,
"limit": 50,
"values": [
list of requests.....
]
}
Now how can I access this list? Because when I do
I get the following error:
Looking at this, I would think that i need an object where values is an attribute in it to retrieve the data, but there is for sure a better way, isn't it?
My actual code:
Beta Was this translation helpful? Give feedback.
All reactions