Skip to content

Commit e198d00

Browse files
committed
apply editing changes
1 parent ee996e9 commit e198d00

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ ms.custom: sap:Enterprise Applications
88
---
99
# Collect HTTPS traffic using Fiddler from Python Apps
1010

11-
Capturing encrypted HTTPS web traffic in Python with Fiddler can be challenging because Python use 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 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.
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 is caused by Python does not trust the Fiddler certificate. Here are two methods to work around this issue:
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:
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 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:
4141

4242
```python
4343
import requests

0 commit comments

Comments
 (0)