Reputation: 71
We want Socialite (web-application name) user data to upload on IBM-Connections per user active stream. It requires proper OAuth mechanism. To achieve this, we are working on OAuth to get OAuth Token and OAuth Secrete per IBM Connections user wise.
We created the AppID, Appkey and AppSecrete with the help of commands mention in IBM documents. http://www-10.lotus.com/ldd/lcwiki.nsf/xpDocViewer.xsp?lookupName=IBM+Connections+4.0+documentation#action=openDocument&res_title=Registering_an_OAuth_client_with_a_provider_ic40&content=pdcontent
Now we need requestTokenURL, authorizationURL, accessTokenURL to get the access token and access secret per IBM Connection user wise.
Please advise me.
Upvotes: 0
Views: 289
Reputation: 1257
The authorization URL should be https://:/oauth2/endpoint/connectionsProvider/authorize
The access token URL should be https://:/oauth2/endpoint/connectionsProvider/token
Upvotes: 1
Reputation: 1271
oAuth2.0 does't have the requestToken anymore. There are only to token uri's
for our test connections environment the endpoint are https://connections4.e-office.com/oauth2/endpoint/connectionsProvider/authorize https://connections4.e-office.com/oauth2/endpoint/connectionsProvider/token
More details you can find here, it's about smartcloud but you can find some good information http://www-10.lotus.com/ldd/appdevwiki.nsf/xpViewTags.xsp?categoryFilter=OAuth%202.0
Upvotes: 0