Skip to content

[evicted:session] Netlify Blobs store scoping issue (Apr 2026): Python REST A...

[evicted:session] Netlify Blobs store scoping issue (Apr 2026): Python REST API (netlify_blobs.py) writes to /api/v1/blobs/{SITE_ID}/workout-data/ while JS getStore("workout-data") in Netlify Functions accesses a DIFFERENT scoped store. Result: data written by Python is invisible to JS functions. Fix: either (a) use getStore with same scoping in both, or (b) switch JS functions to use the REST API with auth token, or (c) write data via JS functions too. The context.env.BLOBS approach is deprecated β€” use import { getStore } from "@netlify/blobs".


scopesession-Netlify-Blobs-store-scoping-issue-Apr-2026-Python-REST-API

[scope:session] Netlify Blobs store scoping issue (Apr 2026): Python REST API...

[scope:session] Netlify Blobs store scoping issue (Apr 2026): Python REST API (netlify_blobs.py) writes to /api/v1/blobs/{SITE_ID}/workout-data/ while JS getStore("workout-data") in Netlify Functions accesses a DIFFERENT scoped store. Result: data written by Python is invisible to JS functions. Fix: either (a) use getStore with same scoping in both, or (b) switch JS functions to use the REST API with auth token, or (c) write data via JS functions too. The context.env.BLOBS approach is deprecated β€” use import { getStore } from "@netlify/blobs".