Skip to content

chore(backend): Use Headers constructor when building BAPI client headers #6235

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 1, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/tasty-starfishes-cry.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@clerk/backend": patch
---

Use Headers constructor when building BAPI client headers
8 changes: 4 additions & 4 deletions packages/backend/src/api/request.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,14 @@ export function buildRequest(options: BuildRequestOptions) {
}

// Build headers
const headers: Record<string, any> = {
const headers = new Headers({
'Clerk-API-Version': SUPPORTED_BAPI_VERSION,
'User-Agent': userAgent,
...headerParams,
};
});

if (secretKey) {
headers.Authorization = `Bearer ${secretKey}`;
headers.set('Authorization', `Bearer ${secretKey}`);
}

let res: Response | undefined;
Expand All @@ -122,7 +122,7 @@ export function buildRequest(options: BuildRequestOptions) {
});
} else {
// Enforce application/json for all non form-data requests
headers['Content-Type'] = 'application/json';
headers.set('Content-Type', 'application/json');

const buildBody = () => {
const hasBody = method !== 'GET' && bodyParams && Object.keys(bodyParams).length > 0;
Expand Down