From 0485c4fa66b9d176989f5822d8215bd46aad9a81 Mon Sep 17 00:00:00 2001 From: fern <126544928+fern-bot@users.noreply.github.com> Date: Fri, 29 Mar 2024 17:22:10 -0400 Subject: [PATCH] (fix): join oauth scopes without + --- src/wrapper/WebflowClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper/WebflowClient.ts b/src/wrapper/WebflowClient.ts index f688a82..4dc371a 100644 --- a/src/wrapper/WebflowClient.ts +++ b/src/wrapper/WebflowClient.ts @@ -33,7 +33,7 @@ export class WebflowClient extends FernClient { if (typeof scope === "string") { params["scope"] = scope; } else { - params["scope"] = scope.join("+"); + params["scope"] = scope.join(" "); } return `https://webflow.com/oauth/authorize?${qs.stringify(params)}`; }