Tag
Http
2 posts tagged Http.
2 September 2026
An Angular auth interceptor, the functional way
Attach a token to every outgoing request and handle a 401 in one place, using the functional HttpInterceptorFn rather than the class-based interceptor most search results still show.
2 September 2026
Retrying an HTTP request in Python, properly
A retry with exponential backoff and jitter that only retries what is worth retrying - and does not hammer a service that is already struggling.