It's all about the answers!

Ask a question

OAuth with RTC


Igor Rafael (611) | asked Jan 12 '11, 6:55 a.m.
I have an application developed with the Jazz Foundation Application SDK 3.x.x.x (https://jazz.net/wiki/bin/view/Main/AppSdk) and i need to query workitems of RTC from my application.

It's possible to use the OAuthHelper of that SDK to authenticate in RTC?
How i can do it?

2 answers



permanent link
Curtis d'Entremont (1.3k3) | answered Jan 14 '11, 11:33 a.m.
FORUM MODERATOR / JAZZ DEVELOPER
It looks like you're trying to call the discovery service on the CCM app (/ccm/discovery), however the discovery service only exists on the JTS. However, if you try to call it on CCM, it will redirect you to the correct URL on the JTS with a 301 response (moved permanently). The new URL is in the Location HTTP header of the response, and should be .../jts/discovery.

permanent link
Igor Rafael (611) | answered Jan 12 '11, 9:51 a.m.
I have an application developed with the Jazz Foundation Application SDK 3.x.x.x (https://jazz.net/wiki/bin/view/Main/AppSdk) and i need to query workitems of RTC from my application.

It's possible to use the OAuthHelper of that SDK to authenticate in RTC?
How i can do it?


When I try to access the Discovery Service of the RTC to recover the OAuth service I always get the error 301 ("This and all future requests directed to Should Be Given the URI") but did not receive the new service URI. How do I use the Discovery Service of the RTC? The code that has been tried so far:

IDiscoveryHelper discoveryHelper = Discovery.getHelper("https://myserver:9443/ccm/discovery");

IServiceResource oauthservice = discoveryHelper.getService(
DiscoveryConstants.SERVICE_TYPE_OAUTH, null);

Your answer


Register or to post your answer.