You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
When trying to request a user in groovy through the endpoint
{crowd host}/crowd/rest/usermanagement/1/user?username={username} via GET
i can't manage to get the endpoint working for me. Doing the same request using postman works though.
Error Message:
{"message":"No content to map to Object due to end of input","status-code":500,"stack-trace":"java.io.EOFException: No content to map to Object due to end of input\n\tat org.codehaus.jackson.map.ObjectMapper._initForReading(ObjectMapper.java:2775)\n\tat org.codehaus.jackson.map.ObjectMapper._readValue(ObjectMapper.java:2691)
Things i tried:
Adding a body containing:
{ "name": "{username}" }
//username or user are unrecognized fields
This body leaves me with:
{"reason":"ILLEGAL_ARGUMENT","message":"An unencrypted or encrypted password must be provided exclusively."}
When adding the password into the body like so
{ "name": "{username}", "password": "{password}" }
i get:
"message":"Can not instantiate value of type [simple type, class com.atlassian.crowd.plugin.rest.entity.PasswordEntity] from JSON String; no single-String constructor/factory method (through reference chain: com.atlassian.crowd.plugin.rest.entity.UserEntity[\"password\"])","status-code":500,"stack-trace":"org.codehaus.jackson.map.JsonMappingException: Can not instantiate value of type [simple type, class com.atlassian.crowd.plugin.rest.entity.PasswordEntity]
But all of this is no where near what's documented in the link above. Changing around the header fields "Content-Type" and "Accept" also doesn't work. Thought it might be a xml/json problem.
But the same code with other parameters works on other endpoints fine.
I've experienced similar problems with Get direct groups
but i haven't tried as many things as on this endpoint.
P.S.: all the error messages are shortened. If you want the full error message I will post them too.
Alright, so after some more trial and error i found out, that on get requests to those endpoints i shall not
connection.setDoOutput(true)
and
OutputStream outStream = connection.getOutputStream()
outStream.close()
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.