Skip to content

Commit 6680ffc

Browse files
authored
[Identity] Update broker docs (Azure#35032)
Using a more preferred term. Signed-off-by: Paul Van Eck <[email protected]>
1 parent 394dc9a commit 6680ffc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

sdk/identity/azure-identity-broker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ credential = InteractiveBrowserBrokerCredential(parent_window_handle=current_win
5656
client = BlobServiceClient(account_url, credential=credential)
5757
```
5858

59-
To bypass the account selection dialog and use the account currently signed into the operating system, set the `use_default_broker_account` argument to `True`. The credential will attempt to silently use the default broker account. If using the default account fails, the credential will fall back to interactive authentication.
59+
To bypass the account selection dialog and use the default broker account, set the `use_default_broker_account` argument to `True`. The credential will attempt to silently use the default broker account. If using the default account fails, the credential will fall back to interactive authentication.
6060

6161
```python
6262
credential = InteractiveBrowserBrokerCredential(

sdk/identity/azure-identity-broker/azure/identity/broker/_browser.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ class InteractiveBrowserBrokerCredential(_InteractiveBrowserCredential):
3737
:keyword int timeout: seconds to wait for the user to complete authentication. Defaults to 300 (5 minutes).
3838
:keyword int parent_window_handle: If your app is a GUI app running on a modern Windows system, you are required to
3939
also provide its window handle so that the sign in UI window will properly pop up on top of your window.
40-
:keyword bool use_default_broker_account: Whether to authenticate with the currently signed in user instead of
41-
prompting the user with a login dialog. Defaults to False.
40+
:keyword bool use_default_broker_account: Enables automatically using the default broker account for
41+
authentication instead of prompting the user with an account picker. Defaults to False.
4242
:keyword bool enable_msa_passthrough: Determines whether Microsoft Account (MSA) passthrough is enabled. Note, this
4343
is only needed for select legacy first-party applications. Defaults to False.
4444
:keyword bool disable_instance_discovery: Determines whether or not instance discovery is performed when attempting

0 commit comments

Comments
 (0)