Ticketmaster

Ticketing

Combines bot management with waiting rooms, so a 302 into a queue and a 403 block mean completely different things and need opposite responses.

Ticketing is the environment that produced most of the modern anti-automation arms race, and Ticketmaster's edge reflects that. Two very different mechanisms operate side by side: bot management, which refuses traffic, and queueing, which orders it.

Telling them apart is the whole diagnostic task. A 302 into a waiting room is not a block, and the correct response is to follow the redirect and wait. A 403 is a block, and waiting achieves nothing. Getting this backwards produces either an abandoned session that would have been served, or a retry loop that will never succeed.

A plain request to the site returned a 403 with a sparse header set, consistent with an edge refusal ahead of the application.

What is in front of it

Status codes

403 Edge block

Blocked. Observed behaviour.

The request was refused before reaching the application.

What triggers it

How to confirm it

What to do about it

302 Waiting room redirect

Rate limited. Observed behaviour.

The session was placed in a virtual waiting room because demand exceeds capacity. Not a bot verdict.

What triggers it

How to confirm it

What to do about it

Notes

See also