Skip to content

Commit

Permalink
fix redirect_uri double hhtps
Browse files Browse the repository at this point in the history
  • Loading branch information
bluebeel committed Dec 6, 2020
1 parent b94a36a commit dadcdd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/auth/oauth-query-string.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function oAuthQueryString(
state: requestNonce,
scope: scopes.join(', '),
client_id: apiKey,
redirect_uri: `https://${appUrl}${callbackPath}`,
redirect_uri: `${appUrl}${callbackPath}`,
};

if (accessMode === 'online') {
Expand Down

0 comments on commit dadcdd1

Please sign in to comment.