musarehmani100's picture
Upload folder using huggingface_hub
3206347 verified
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({
client_id: $.auth.data.clientId,
redirect_uri: redirectUri,
});
const url = `https://oauth.pipedrive.com/oauth/authorize?${searchParams.toString()}`;
await $.auth.set({
url,
});
}