- 
When App A login an user, it receives a JWT token with the audience being AppA and 
- 
When App B login an user, it receives a JWT token with the audience being AppB. 
- 
The API is not part of App A nor App B, meaning, it has its own audience, let's imagine here, ApiC. The only way we managed to get this working today is setting up Api C to ignore the validation of the audience OR have a way to define which audiences are valid for the API. 
QUESTION
What is the correct process using Fusion Auth, to make our API C accept tokens from both App A and App B without creating security issues?