20 lines
523 B
JavaScript
20 lines
523 B
JavaScript
import { URLSearchParams } from 'url';
|
|
|
|
export default async function generateAuthUrl($) {
|
|
const oauthRedirectUrlField = $.app.auth.fields.find(
|
|
(field) => field.key == 'oAuthRedirectUrl'
|
|
);
|
|
const redirectUri = oauthRedirectUrlField.value;
|
|
const searchParams = new URLSearchParams({
|
|
response_type: 'code',
|
|
client_id: $.auth.data.clientId,
|
|
redirect_uri: redirectUri,
|
|
});
|
|
|
|
const url = `https://www.eventbrite.com/oauth/authorize?${searchParams.toString()}`;
|
|
|
|
await $.auth.set({
|
|
url,
|
|
});
|
|
}
|