Hey, I want to use access_token + refresh_token to access ads API on behalf of an user. If I want to use the client library I need to specify developerToken which is linked to some ad account. At the moment I use developerToken that I got from our company ad account but I wonder if it makes sense as I want to access other ad account.
To clarify in a bit more detail:
- User A comes to our app, links his account through Oauth flow
- We get access_token and refresh_token with permissions to Ads API
- We want to check some info about users A ad account (lets call that account AA) but I need to supply developerToken with the request
- developerTokens as far as I know are linked to ad account but I do not have developerToken for ad account AA
- I use developerToken from our company ad account to access AA, this seems to work but I want to check if this is the right way to do that as that developerToken seem in no way linked to the AA ad account or to the Oauth App that was used to get the access_token and refresh_token.
Thanks in advance.