You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ai_builder/integrations/azure_auth.md
+56-18Lines changed: 56 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,14 +11,20 @@ import reflex as rx
11
11
from reflex_image_zoom import image_zoom
12
12
```
13
13
14
+
15
+
## Step 1: Set Up Azure App Registration
16
+
17
+
Before connecting, you need to register your app in Azure Portal:
18
+
19
+
1 - Go to [Azure Portal](https://portal.azure.com) → **App Registrations**
20
+
21
+
2 - Click **New registration** as shown in the image below:
22
+
14
23
```python eval
15
24
rx.el.div(
16
25
image_zoom(
17
26
rx.image(
18
-
src=rx.color_mode_cond(
19
-
"/ai_builder/integrations/azure_auth_light.webp",
20
-
"/ai_builder/integrations/azure_auth_dark.webp",
21
-
),
27
+
src="/ai_builder/integrations/azure_auth_1.webp",
22
28
class_name="p-2 rounded-md h-auto",
23
29
border=f"0.81px solid {rx.color('slate', 5)}",
24
30
),
@@ -28,28 +34,60 @@ rx.el.div(
28
34
)
29
35
```
30
36
31
-
## Step 1: Set Up Azure App Registration
32
-
33
-
Before connecting, you need to register your app in Azure Portal:
37
+
3 - Register your app. Ensure that for the Redirect URI you select **Web** and enter the following URI that you find in the Azure Auth Manager integration settings in AI Builder:
0 commit comments