What are MetaScopes and how can I find what I need to add?
I have been using this example using `@adobe/jwt-auth` to try and authenticate my external service to invoke my Project Firefly app.
My config is like...
export default {
credentials: {
clientId : 'client id',
technicalAccountId : 'account id',
orgId : 'org',
clientSecret : 'secret',
metaScopes : 'ent_user_sdk', // This comes from the example
privateKey : '-----BEGIN PRIVATE KEY-----\n' +
'My Private Key/n' +
'-----END PRIVATE KEY-----\n',
},
};
The metascopes in the JWT are not a subset of the metascopes in the binding
Thanks