Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@

/*
* Getting Started with LinkedIn's Marketing APIs ,
* Documentation: https://docs.microsoft.com/en-us/linkedin/marketing/getting-started
* Documentation: https://learn.microsoft.com/en-us/linkedin/marketing/getting-started
* The additional scopes required to use these functions are:
* 'rw_ads, rw_organization_admin'
* 'r_ads, w_ads' (replaces deprecated 'rw_ads, rw_organization_admin')
* You can invoke these functions independently with valid access token string as a parameter.
* More Docs: https://docs.microsoft.com/en-us/linkedin/marketing/integrations/ads/account-structure/create-and-manage-account-users
* More Docs: https://learn.microsoft.com/en-us/linkedin/marketing/integrations/ads/account-structure/create-and-manage-account-users
*/

@RestController
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/resources/config.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ clientSecret=<replace_with_your_client_secret>
# Replace the below with the URL to direct the after successful authorization code generation(set in your developer application)
redirectUri=http://localhost:8080/login
#Replace with desired scopes
scope=r_emailaddress,r_liteprofile,rw_ads,rw_organization_admin
scope=openid,profile,email,w_member_social
#REST based client-component URL
client_url=http://localhost:8989/

Expand Down