Skip to content
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