Skip to content

Commit 9c1aaba

Browse files
committed
update the article
1 parent 4e184d3 commit 9c1aaba

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

support/entra/entra-id/app-integration/capture-https-traffic-fiddler-python-app.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
---
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
44
ms.date: 03/20/2025
55
ms.author: bachoang
66
ms.service: entra-id
77
ms.custom: sap:Enterprise Applications
88
---
9-
# Collect HTTPS traffic using Fiddler from Python Apps
9+
# Collect HTTPStraffic using Fiddler from Python Apps
1010

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.
1212

1313
## ADAL for Python
1414

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:
1616

1717
> [!Note]
1818
> Disabling SSL verification isis a security risk. It should only be used for troubleshooting purposes and avoided in production environments.
@@ -37,7 +37,7 @@ app = msal.PublicClientApplication( client_id=appId, authority="https://login.mi
3737
```
3838
## Python Requests Module
3939

40-
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:
4141

4242
```python
4343
import requests
@@ -53,7 +53,7 @@ json_output = requests.get(
5353
verify=False
5454
).json()
5555
```
56-
## AAD Libraries for Python or GraphRbacManagementClient
56+
## Azure Active Directory SDK for Python (GraphRbacManagementClient)
5757

5858
The following example shows how to disable SSL verification:
5959

0 commit comments

Comments
 (0)