June 2023

How to Send an HTTP Request in SharePoint via JavaScript

Plain fetch() or XMLHttpRequest work fine for hitting SharePoint’s REST API — the part that’s actually SharePoint-specific isn’t the HTTP call itself, it’s the headers: an Accept header SharePoint’s OData implementation expects, and a request digest token required on anything that isn’t a GET. In this post: A GET request: fetching list items · A […]

How to Send an HTTP Request in SharePoint via JavaScript Read More »

Start your SharePoint with SPFX

SPFx (SharePoint Framework) is Microsoft’s current framework for building client-side web parts and extensions with TypeScript and React. The basic shape of getting started hasn’t changed, but two real pieces of the toolchain have — the build tooling and the way you test locally — and a lot of “getting started” guides still show the

Start your SharePoint with SPFX Read More »

SharePoint Online Modern Script Editor and Its Consequences

Modern SharePoint has no equivalent of the classic Script Editor web part — that’s a deliberate security decision, not a missing feature. Custom script is blocked by default on every modern site, and the workarounds people reach for come with real governance consequences that go beyond “test your code first.” This post covers what’s actually

SharePoint Online Modern Script Editor and Its Consequences Read More »

o365 SharePoint Online and File Sync Limitations

SharePoint Online syncs through the same OneDrive sync client as a personal OneDrive account, so a lot of the numbers overlap — for storage quotas, sharing controls, and version history, see OneDrive Cloud and Sync Limitations. This post covers the piece that’s specific to SharePoint document libraries: file and folder naming rules, what actually gets

o365 SharePoint Online and File Sync Limitations Read More »

SharePoint – How to Copy document Recommendations

Copying documents in SharePoint has more than one right answer — which method actually fits depends on how many files, how often, and whether the process needs to run unattended. This post is a quick recommendation guide; for the full depth on PnP PowerShell bulk copying, job-status checking, and Power Automate, see SharePoint Copy Files:

SharePoint – How to Copy document Recommendations Read More »