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: support/entra/entra-id/app-integration/capture-https-traffic-fiddler-python-app.md
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,18 +1,18 @@
1
1
---
2
-
title: Collect HTTPS Traffic using Fiddler from Python app with Microsoft Entra ID
3
-
description: Provide instructions on how to collect HTTPS traffic using Fiddler from Microsoft Entra ID Apps
2
+
title: Collect HTTPSTraffic using Fiddler from Python app with Microsoft Entra ID
3
+
description: Provide instructions on how to collect HTTPStraffic using Fiddler from Microsoft Entra ID Apps
4
4
ms.date: 03/20/2025
5
5
ms.author: bachoang
6
6
ms.service: entra-id
7
7
ms.custom: sap:Enterprise Applications
8
8
---
9
-
# Collect HTTPS traffic using Fiddler from Python Apps
9
+
# Collect HTTPStraffic using Fiddler from Python Apps
10
10
11
-
Capturing encrypted HTTPS web traffic in Python with Fiddler can be challenging because Python uses its own trusted certificate store rather than the operating system’s certificate store. Additionally, Python does not use a proxy by default in certain scenario. This article explains how to capture SSL traffic using Fiddler for Python app across different scenarios.
11
+
Capturing encrypted HTTPSweb traffic in Python with Fiddler can be challenging because Python uses its own trusted certificate store rather than the operating system’s certificate store. Additionally, Python doesn't use a proxy by default in certain scenario. This article explains how to capture SSL traffic using Fiddler for Python app across different scenarios.
12
12
13
13
## ADAL for Python
14
14
15
-
When you use Fiddler to capture HTTPs traffic in an Python app that integrates Azure Active Directory Authentication Library (ADAL), you may receive SSL errors. This issue occurs because Python doesn't trust the Fiddler certificate. Here are two methods to work around this issue:
15
+
When you use Fiddler to capture HTTPStraffic in a Python app that integrates Azure Active Directory Authentication Library (ADAL), you may receive SSL errors. This issue occurs because Python doesn't trust the Fiddler certificate. Here are two methods to work around this issue:
16
16
17
17
> [!Note]
18
18
> Disabling SSL verification isis a security risk. It should only be used for troubleshooting purposes and avoided in production environments.
The Requests module does not use Proxy by default. You must force the request to go through the Fiddler proxy. The following example shows how to do this:
40
+
The Requests module doesn't use Proxy by default. You must force the request to go through the Fiddler proxy. The following example shows how to do this:
41
41
42
42
```python
43
43
import requests
@@ -53,7 +53,7 @@ json_output = requests.get(
53
53
verify=False
54
54
).json()
55
55
```
56
-
## AAD Libraries for Python or GraphRbacManagementClient
56
+
## Azure Active Directory SDK for Python (GraphRbacManagementClient)
57
57
58
58
The following example shows how to disable SSL verification:
0 commit comments