0

我们希望社交名流(Web 应用程序名称)用户数据按用户活动流上传到 IBM-Connections。它需要适当的 OAuth 机制。为了实现这一点,我们正在开发 OAuth,以便为每个 IBM Connections 用户明智地获取 OAuth 令牌和 OAuth Secrete。

我们借助 IBM 文档中提到的命令创建了 AppID、Appkey 和 AppSecrete。 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

现在我们需要 requestTokenURL、authorizationURL、accessTokenURL 来获取每个 IBM Connection 用户的访问令牌和访问密钥。

请给我提意见。

4

2 回答 2

1

授权 URL 应为 https://:/oauth2/endpoint/connectionsProvider/authorize

访问令牌 URL 应为 https://:/oauth2/endpoint/connectionsProvider/token

于 2013-03-18T20:32:16.623 回答
0

oAuth2.0 不再有 requestToken。只有to token uri的

对于我们的测试连接环境,端点是 https://connections4.e-office.com/oauth2/endpoint/connectionsProvider/authorize https://connections4.e-office.com/oauth2/endpoint/connectionsProvider/token

您可以在这里找到更多详细信息,它是关于 smartcloud 但您可以找到一些很好的信息 http://www-10.lotus.com/ldd/appdevwiki.nsf/xpViewTags.xsp?categoryFilter=OAuth%202.0

于 2013-03-18T06:05:41.143 回答