Internal error occurred but is skipped: FindTagsByCommitIDs

Files
VLoop/test/feed.json
2025-12-09 15:31:27 +08:00

32 lines
912 B
JSON

{
"info": {
"name": "FeedSystem Feed API",
"_postman_id": "4c2fd555-b880-4b14-8023-55a944936352",
"description": "Feed endpoints without embedded scripts.",
"schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
},
"item": [
{
"name": "List Latest Feed",
"request": {
"method": "POST",
"header": [{ "key": "Content-Type", "value": "application/json" }],
"body": {
"mode": "raw",
"raw": "{\n \"limit\": {{feedLimit}},\n \"latest_time\": {{feedLatestTime}}\n}"
},
"url": {
"raw": "{{host}}/feed/listLatest",
"host": ["{{host}}"],
"path": ["feed", "listLatest"]
}
}
}
],
"variable": [
{ "key": "host", "value": "http://localhost:8080" },
{ "key": "feedLimit", "value": "10" },
{ "key": "feedLatestTime", "value": "0" }
]
}