How to get the JSON response from the Greenhopper REST API in Gadget?

Satya Pambi April 24, 2013

I am not able to get the response from the GreenHopper REST API for the url http://localhost:2990/jira/rest/greenhopper/1.0/sprints/1 through my Gadget application.

I able to get the following output when I try it from Browser, Below is the Output.

{"sprints":[{"id":1,"name":"Sprint 1","closed":false}],"rapidViewId":1}

My Code snippet to retrive the sprint details in Gadget is :

args: {

key: "sprints",

ajaxOptions: function () {

return {

url: "/rest/greenhopper/1.0/sprints/1",

};

}

}

Can anybody sugget me how to get the JSON Response from greenhopper REST API for a JIRA dashboard.

I am getting following Exception in Server:

[talledLocalContainer] at java.lang.Thread.run(Thread.java:662)

[talledLocalContainer] 2013-04-25 15:26:58,985 http-2990-11 ERROR admin 926x5323x1 dggnll 172.27.186.82 /rest/greenhopper/1.0/sprints/1

[common.error.jersey.ThrowableExceptionMapper] Uncaught exception thrown by REST service

[talledLocalContainer] javax.ws.rs.WebApplicationException

[talledLocalContainer] at com.sun.jersey.server.impl.uri.rules.TerminatingRule.accept(TerminatingRule.java:66)

[talledLocalContainer] at com.sun.jersey.server.impl.uri.rules.ResourceClassRule.accept(ResourceClassRule.java:108)

1 answer

0 votes
Timothy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
April 30, 2013

Did you get this to work? My workaround was to make Java client to make the call.

Suggest an answer

Log in or Sign up to answer