0

在我使用基于示例的 Java 代码创建社区后,我可以通过在“所有连接”中搜索找到该社区,但如果我选择社区菜单,则任何子菜单选项:我是所有者,我'm a Member, Public ... 新社区未列出。即使经过数小时或数天,它也不会出现。API 中是否有我需要设置的参数,或者这是连接配置设置问题?

4

1 回答 1

0

和斯瓦蒂聊天...

这段代码对我有用。 https://greenhouse.lotus.com/sbt/SBTPlayground.nsf/JavaSnippets.xsp#snippet=Social_Communities_CreateCommunity

你有什么版本的连接?

您是否检查了社区名称是否已经存在?

此代码对我有用...您必须发布代码以供评论(或代码示例)

CommunityService communityService = new CommunityService();
    Community community =  new Community(communityService, "");
    community.setTitle("Test Community 1ab" + System.currentTimeMillis());
    community.setContent("Test Community updated by Update Community Java snippet");
    community.setCommunityType("private");
    List<String> tags = new ArrayList<String>();
    tags.add("tag1"); 
    tags.add("tag2"); 
    community.setTags(tags);
    community = community.save();
于 2013-10-29T13:17:12.913 回答