0

I have an entity that I have populated with multiple thousands of values via the Wit API (https://wit.ai/docs/http/20160526#post--entities-:entity-id-values-link).

The script to add them seems to have completed successfully, but when I try to retrieve the entity to verify all of it's values, only 1000 are returned.

This appears to be a limit on the GET Entity API call (https://wit.ai/docs/http/20160526#get--entities-:entity-id-link). Is there a way to retrieve all entity values if there are more than 1000?

4

1 回答 1

0

您可以尝试在您的网址中使用以下分页参数:

  • 限制
  • 抵消

例如 limit=1000&offset=1 应该检索从 1001 到 2000 的表达式

于 2016-09-06T03:47:14.427 回答