Hi @Joseph Wylie
If you want other tenants to be able to access your app, you must configure your app as a multi-tenant app.
Find your app and change its supported account types to the following:
Next, you need to run the administrator consent URL in the browser and log in with the administrator of the target tenant and consent. After that, your multi-tenant app will be added to the target tenant as an enterprise app.
https://login.microsoftonline.com/{id of the target tenant}/adminconsent?client_id={client id}
Finally you need to change /{tenant-id}
to the id of the target tenant to get an access token for the target tenant.
https://login.microsoftonline.com/{id of the target tenant}/oauth2/v2.0/token
Hope this helps.
If the reply is helpful, please click Accept Answer and kindly upvote it. If you have additional questions about this answer, please click Comment.