We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8f7f265 + 79b8e05 commit cb82f04Copy full SHA for cb82f04
src/wrapper/WebflowClient.ts
@@ -81,6 +81,15 @@ export class WebflowClient extends FernClient {
81
method: "POST",
82
contentType: "application/json",
83
body,
84
+ headers: {
85
+ "X-Fern-Language": "JavaScript",
86
+ "X-Fern-SDK-Name": "webflow-api",
87
+ "X-Fern-SDK-Version": "2.4.0",
88
+ "User-Agent": "webflow-api/2.4.0",
89
+ "X-Fern-Runtime": core.RUNTIME.type,
90
+ "X-Fern-Runtime-Version": core.RUNTIME.version,
91
+ },
92
+ requestType: "json",
93
});
94
if (response.ok) {
95
return (response.body as any)["access_token"];
0 commit comments