Ray Luo
Ray Luo
> Unfortunately [for Python](https://github.com/Azure/azure-sdk-for-python/blob/main/sdk/identity/azure-identity/azure/identity/_credentials/service_fabric.py#L38) they have not implemented any validation logic to copy, and simply hardcode the relevant 'connection_verify' flag to false. No wonder we were not aware of this...
> **To Reproduce** Steps to reproduce the behavior: > > 1. Launch Chrome/Chromium before running anything > > 2. Run [interactive_sample.py](https://github.com/AzureAD/microsoft-authentication-library-for-python/tree/dev/sample/interactive_sample.py) with Chromium or Google Chrome set as the default...
> > Can't reproduce. I installed a Chrome (Version 122.0.6261.94 (Official Build) (64-bit)) on my Debian-variation just now, set it as default, and then launch an equivalent script using MSAL...
> You can then test with `export BROWSER=xdg-open` and then test the script. Apparently, Chrome/Chromium will change its output behavior if it's launched from xdg-open due to its code. Haven't...
> So I am just using this to manually reproduce what other people have reported to me on different Linux distributions. In that case, there are lots of setups to...
This is [how MSAL Python currently opens a browser](https://github.com/AzureAD/microsoft-authentication-library-for-python/blob/1.27.0/msal/oauth2cli/authcode.py#L68-L88). It is already too complicated than we would like it to be. If you can provide some hints or links on...
> As `pymsalruntime` doesn't have a GitHub repo, the MSAL repo is the closest to `pymsalruntime`. Fair enough. I'll assign this issue to @ashok672 , though. :-) > **Describe the...
> > #604 was about MSAL Python itself being cross-Python-versions. But the `msal[broker]` package's dependency [`pymsalruntime` does not currently have a build artifact for Python 3.12](https://pypi.org/project/pymsalruntime/#files). > > Well, this...
@AkechiShiro , @vairakkumaar-svs-hf , For now, instead of `pip install msal[broker]`, try this as a workaround. ``` pip install msal pip install pymsalruntime ```
UPDATE: * This has technically been fixed in [MSAL Python 1.27](https://github.com/AzureAD/microsoft-authentication-library-for-python/releases/tag/1.27.0) * However, the latest PyMsalRuntime 0.14.1 happens to be not quite ready. Downstream apps would need to manually do...