Embed Databricks apps in web applications
Embed Databricks apps in other web applications using an HTML iframe element. To embed an app, specify the app URL as the src
attribute in an iframe tag.
Requirements
- Users viewing the embedded app must be authenticated Databricks users.
- Users must have the appropriate permissions to access the app. See Configure permissions for a Databricks app.
- The app must be running and accessible in the workspace.
Example
Html
<iframe src="https://your-workspace.databricks.com/apps/your-app-name" width="100%" height="600px" frameborder="0">
</iframe>
Replace your-workspace
with your actual workspace URL and your-app-name
with the name of your app.