Skip to content

Commit

Permalink
update authentication
Browse files Browse the repository at this point in the history
  • Loading branch information
rvadera12 committed Oct 24, 2024
1 parent 2f759b0 commit 8adf927
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { editDeviceMobileIds } from '../functions'
const action: ActionDefinition<Settings, Payload, AudienceSettings> = {
title: 'Edit Customer Match Members - Mobile Device Id List',
description: 'Add or update customer match members in Google Display & Video 360 Mobile Device Id List Audience.',
defaultSubscription: 'event = "Audience Entered',
defaultSubscription: 'event = "Audience Entered"',
fields: {
mobileDeviceIds: { ...mobileDeviceIds },
external_id: { ...external_id },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ type DV360AuthCredentials = { refresh_token: string; access_token: string; clien

export const getAuthSettings = (): DV360AuthCredentials => {
return {
refresh_token: process.env.ACTIONS_DISPLAY_VIDEO_360_REFRESH_TOKEN,
client_id: process.env.ACTIONS_DISPLAY_VIDEO_360_CLIENT_ID,
client_secret: process.env.ACTIONS_DISPLAY_VIDEO_360_CLIENT_SECRET
refresh_token: process.env.ACTIONS_FIRST_PARTY_DV360_REFRESH_TOKEN,
client_id: process.env.ACTIONS_FIRST_PARTY_DV360_CLIENT_ID,
client_secret: process.env.ACTIONS_FIRST_PARTY_DV360_CLIENT_SECRET
} as DV360AuthCredentials
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { editDeviceMobileIds } from '../functions'
const action: ActionDefinition<Settings, Payload, AudienceSettings> = {
title: 'Remove Customer Match Members - Mobile Device Id List',
description: 'Remove customer match members in Google Display & Video 360 Mobile Device Id List Audience.',
defaultSubscription: 'event = "Audience Entered',
defaultSubscription: 'event = "Audience Exited"',
fields: {
mobileDeviceIds: { ...mobileDeviceIds },
external_id: { ...external_id },
Expand Down

0 comments on commit 8adf927

Please sign in to comment.