HTTP status codes / 1xx — Informational

102 Processing

In one sentence

WebDAV: the server accepted the request but has not completed it yet.

What it means

A WebDAV interim response telling the client the server is still working and the connection should not be treated as dead. Deprecated in practice and rarely seen outside legacy WebDAV stacks.

Common causes

How to debug it

If you see 102 outside WebDAV, an intermediary is probably misbehaving.

The fastest way to pin down a 102 is to reproduce the exact request and inspect what actually went over the wire — status, headers, timing and body, without your app code in the way. That is what an API client is for; ReqPad does it from your phone, with every request saved to history.

Related codes

100 Continue · 101 Switching Protocols · 103 Early Hints — or the full reference.

Reproduce that 102 in 10 seconds.

Build the request, send it, read status + headers + timing — on your iPhone. Free to start.