We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if performance is a feature request or bug.
import win32gui from azure.identity.broker import InteractiveBrowserBrokerCredential from msgraph.graph_service_client import GraphServiceClient
1.1s (Already in issue #904)
current_window_handle = win32gui.GetForegroundWindow() credentials = InteractiveBrowserBrokerCredential( tenant_id=tenant, client_id=client_id, use_default_broker_account=True, parent_window_handle=current_window_handle, )
0.0s (Expected)
client = GraphServiceClient( credentials=credentials, scopes=[] )
0.4s (Slower than I would expect)
await client.me.get()
2.2s (1st request. This is significantly slower than I would expect)
0.1s (2nd request. Expected)
The text was updated successfully, but these errors were encountered:
Were you able to determine why this is so slow? I think it should only be making a few requests, so I would expect it to be significantly faster.
Sorry, something went wrong.
No branches or pull requests
Not sure if performance is a feature request or bug.
1.1s (Already in issue #904)
0.0s (Expected)
0.4s (Slower than I would expect)
2.2s (1st request. This is significantly slower than I would expect)
0.1s (2nd request. Expected)
The text was updated successfully, but these errors were encountered: