Databricks Apps allows us to define dependencies & an entrypoint to execute a Python application like Gradio, Streamlit, etc. It seems I can also run a FastAPI application and access via an authenticated browser which is potentially a very powerful capability.
I'm trying to access this API from outside Databricks. Obviously I need to authenticate; I'm following the instructions Authenticate access to Databricks with OAuth
Following this pattern, and passing the generated token with a header like "Authorization: Bearer $TOKEN", allows me to access regular Databricks APIs, but does not let me reach my "Databricks Apps" API.
Is this possible to achieve? If not currently, is this considered in the roadmap?