在我使用基于示例的Java代码创建社区后,我可以通过搜索“所有连接”找到社区,但是如果我选择“社区”菜单,那么任何子菜单选项:我是一个所有者,我是会员,公共......新社区未列出。即使数小时或数天也没出现。我需要在API中设置一个参数,或者这是一个Connections配置设置问题吗?
答案 0 :(得分:0)
与Swati聊天......
您拥有哪种版本的Connections?
您是否检查过社区名称是否已存在?
此代码适用于我...您必须发布您的代码以供评论(或代码示例)
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();