여러 유저 확인
[ { "user_id": 123, "found": "true", "reason": "봇을 이용한 테러", "category": "도배테러" }, { "user_id": 456, "found": "false", "reason": null, "category": null } ]{ "error": "Too many user_ids. Maximum allowed is 25." }{ "error": "Invalid api_key or user_id" }{ "error": "IP blocked due to low reputation" }{ "error": "Rate limit exceeded" }
curl -X POST http://localhost:8080/check_users \ -H "api_key: your_api_key" \ -H "user_id: 123" \ -d '{"user_ids": [123, 456, 789]}'[ { "user_id": 123, "found": "true", "reason": "봇을 이용한 테러", "category": "도배테러" }, { "user_id": 456, "found": "false", "reason": null, "category": null } ]
Last updated