Skip to content

Commit a2a49ce

Browse files
committed
Cleanup broken links
1 parent cd14095 commit a2a49ce

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ Get started with the Microsoft Graph SDK for Python by integrating the [Microsof
1212
pip install msgraph-sdk-python
1313
```
1414

15-
## 2. Getting started
16-
## Get started with Microsoft Graph
15+
## 2. Getting started with Microsoft Graph
1716

1817
### 2.1 Register your application
1918

@@ -23,7 +22,7 @@ Register your application by following the steps at [Register your app with the
2322

2423
An instance of the **GraphServiceClient** class handles building client. To create a new instance of this class, you need to provide an instance of **AuthenticationProvider**, which can authenticate requests to Microsoft Graph.
2524

26-
Note: This SDK offers an asynchronous API by default. Async is a concurrency model that is far more efficient than multi-threading, and can provide significant performance benefits and enable the use of long-lived network connections such as WebSockets. We support the popular async envronments such as `asyncio`, `anyio` or `trio`. For authentication you need to use one of the async credential classes from `azure.identity`.
25+
> **Note**: This SDK offers an asynchronous API by default. Async is a concurrency model that is far more efficient than multi-threading, and can provide significant performance benefits and enable the use of long-lived network connections such as WebSockets. We support popular python async envronments such as `asyncio`, `anyio` or `trio`. For authentication you need to use one of the async credential classes from `azure.identity`.
2726
2827
```py
2928
from azure.identity.aio import EnvironmentCredential
@@ -79,9 +78,9 @@ from msgraph.graph_request_adapter import GraphRequestAdapter
7978
from msgraph.graph_service_client import GraphServiceClient
8079

8180
credential = ClientSecretCredential(
82-
'tenantId',
83-
'clientId',
84-
'clientSecret'
81+
'tenant_id',
82+
'client_id',
83+
'client_secret'
8584
)
8685
auth_provider = AzureIdentityAuthenticationProvider(credential)
8786
request_adapter = GraphRequestAdapter(auth_provider)
@@ -117,9 +116,7 @@ print(user.display_name)
117116
```
118117
## Documentation and resources
119118

120-
* [Documentation](docs/README.md)
121-
122-
* [Examples](docs/Examples.md)
119+
* [Overview](https://docs.microsoft.com/graph/overview)
123120

124121
* [Microsoft Graph website](https://aka.ms/graph)
125122

@@ -140,4 +137,7 @@ Please read our [Contributing](CONTRIBUTING.md) guidelines carefully for advice
140137

141138
Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT [license](LICENSE).
142139

143-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
140+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
141+
142+
## Third Party Notices
143+
[Third-party notices](THIRD%20PARTY%20NOTICES)

0 commit comments

Comments
 (0)