1

我是 IBM SBT 的新手,需要一些帮助才能根据 IBM 连接配置文件 API 的名字、姓氏或电子邮件 ID 获取配置文件的用户 ID。

我打算代表其他人在活动流上发帖,我需要这个其他人的用户 ID,以便我可以代表他发帖。

非常感谢任何帮助。

4

1 回答 1

3

这将返回 IBM Connections 用户的 UUID:

ProfileService profileService = new ProfileService();
connectionsUuid = profileService.getProfile(emailAddress).getId();

如果字符串emailAddress包含一个@,它会按电子邮件地址搜索,否则,它会按用户名搜索,因此这些将返回与 IBM 角色“Frank Adams”相同的 UUID:

connectionsUuid = profileService.getProfile("fadams@demos.ibm.com").getId();
connectionsUuid = profileService.getProfile("fadams").getId();
于 2013-09-22T16:25:08.257 回答