diff --git a/infra/aws/index.ts b/infra/aws/index.ts index d6e7b3976d..aa2443152e 100644 --- a/infra/aws/index.ts +++ b/infra/aws/index.ts @@ -318,7 +318,7 @@ const albPassportXyzTargetGroup = new aws.lb.TargetGroup(`passport-xyz-iam`, { const albPassportXyzListenerRule = new aws.lb.ListenerRule(`passport-xyz-iam-https`, { listenerArn: albHttpsListenerArn, - priority: 100, // This needs to be grater than the priority number for passport-scroll-badge-service + priority: 102, // This needs to be grater than the priority number for passport-scroll-badge-service actions: [ { type: "forward", @@ -365,7 +365,7 @@ const albGitcoinTargetGroup = new aws.lb.TargetGroup(`passport-iam`, { const albGitcoinListenerRule = new aws.lb.ListenerRule(`passport-iam-https`, { listenerArn: albHttpsListenerArn, - priority: 101, // This needs to be grater than the priority number for passport-scroll-badge-service + priority: 100, // This needs to be grater than the priority number for passport-scroll-badge-service actions: [ { type: "forward", diff --git a/platforms/src/Linkedin/App-Bindings.ts b/platforms/src/Linkedin/App-Bindings.ts index 549e274539..257c30e138 100644 --- a/platforms/src/Linkedin/App-Bindings.ts +++ b/platforms/src/Linkedin/App-Bindings.ts @@ -19,7 +19,7 @@ export class LinkedinPlatform extends Platform { async getOAuthUrl(state: string): Promise { const linkedinUrl = await Promise.resolve( - `https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=${this.clientId}&redirect_uri=${this.redirectUri}&state=${state}&scope=email%20profile` + `https://www.linkedin.com/oauth/v2/authorization?response_type=code&client_id=${this.clientId}&redirect_uri=${this.redirectUri}&state=${state}&scope=r_emailaddress%20r_liteprofile` ); return linkedinUrl; }