← 返回 stripe 的题目列表Integration task: read JSON file, make HTTP requests, compare responses
类型:online_judge
Integration: Read JSON -> Make HTTP requests -> Compare responses
Given a JSON file, you need to:
Read and parse the JSON file (possibly containing multiple request specs).
Construct and send the corresponding HTTP requests (e.g., GET/POST) as described.
Compare each response against the expected fields/values recorded in the JSON file and output whether they match.
This evaluates documentation reading, library integration, and end-to-end problem solving (HTTP client, JSON parser, etc.).
Note: The original post lacks JSON schema, endpoints, auth, comparison rules, and output format, so this is kept as a summary only.