Java - Box SDK - BoxItem.getInfo().getTags() 在不应该为空的时候为空
Java - Box SDK - BoxItem.getInfo().getTags() is empty when it shouldn't be
当我使用 Box java api 时,BoxInfo.tags
似乎总是空的,即使我知道对象上有标签。
有什么方法可以得到它们吗?
List<String> tags = item.getInfo().getTags();
糟糕我忘了
BoxItem.Info info = item.getInfo(BoxItem.ALL_FIELDS);
默认情况下不返回标签。
当我使用 Box java api 时,BoxInfo.tags
似乎总是空的,即使我知道对象上有标签。
有什么方法可以得到它们吗?
List<String> tags = item.getInfo().getTags();
糟糕我忘了
BoxItem.Info info = item.getInfo(BoxItem.ALL_FIELDS);
默认情况下不返回标签。