Catalog108 / challenges / static/cookies/required
Cookie-Gated Content Challenge
What this challenge teaches
Teaches: Content is only visible when the request carries a specific cookie. Set it manually and re-fetch.
Expected output: Send Cookie: practice_pass=108 with your request; expect "the secret list" to appear.
Submit your scraper's JSON output to /challenges/static/cookies/required/grade
(grader endpoint is part of a later phase; URL is reserved now).
Locked.
Send a
Cookie: practice_pass=108 header on your request and reload.
With curl: curl -b "practice_pass=108" https://practice.scrapingcentral.com/challenges/static/cookies/required
With Python: requests.get(url, cookies={"practice_pass": "108"}).