Skip to content

Commit 03fc640

Browse files
committed
Fix build and links
1 parent 44c63c8 commit 03fc640

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

articles/digital-twins/.openpublishing.redirection.digital-twins.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
{
199199
"source_path": "how-to-use-postman.md",
200200
"redirect_url": "/azure/digital-twins/how-to-use-apis",
201-
"redirect_document_id": true
201+
"redirect_document_id": false
202202
},
203203
{
204204
"source_path": "about-digital-twins.md",

articles/digital-twins/concepts-apis-sdks.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Here's some general information for calling the Azure Digital Twins APIs directl
4848
* Azure Digital Twins doesn't currently support Cross-Origin Resource Sharing (CORS). For more info about the impact and resolution strategies, see [Cross-Origin Resource Sharing (CORS) for Azure Digital Twins](concepts-security.md#cross-origin-resource-sharing-cors).
4949

5050
Here's some more information about authentication for API requests.
51-
* One way to generate a bearer token for Azure Digital Twins API requests is with the [az account get-access-token](/cli/azure/account#az-account-get-access-token()) CLI command. For detailed instructions, see [Get bearer token](how-to-use-apis.md#add-bearer-token).
51+
* One way to generate a bearer token for Azure Digital Twins API requests is with the [az account get-access-token](/cli/azure/account#az-account-get-access-token()) CLI command. For detailed instructions, see [Add bearer token](how-to-use-apis.md#add-bearer-token).
5252
* Requests to the Azure Digital Twins APIs require a user or service principal that is a part of the same [Microsoft Entra ID](../active-directory/fundamentals/active-directory-whatis.md) tenant where the Azure Digital Twins instance exists. To prevent malicious scanning of Azure Digital Twins endpoints, requests with access tokens from outside the originating tenant will be returned a "404 Sub-Domain not found" error message. This error will be returned even if the user or service principal was given an Azure Digital Twins Data Owner or Azure Digital Twins Data Reader role through [Microsoft Entra B2B](../active-directory/external-identities/what-is-b2b.md) collaboration. For information on how to achieve access across multiple tenants, see [Write app authentication code](how-to-authenticate-client.md#authenticate-across-tenants).
5353

5454
### SDK notes
@@ -101,7 +101,7 @@ You'll also need to grant the following **RBAC permissions** to the system-assig
101101
* [Storage Blob Data Reader](../role-based-access-control/built-in-roles.md#storage-blob-data-reader) for the Azure Storage input blob container
102102
* [Storage Blob Data Contributor](../role-based-access-control/built-in-roles.md#storage-blob-data-contributor) for the Azure Storage output blob container
103103

104-
Finally, generate a bearer token that can be used in your requests to the Jobs API. For instructions, see [Get bearer token](how-to-use-apis.md#add-bearer-token).
104+
Finally, generate a bearer token that can be used in your requests to the Jobs API. For instructions, see [Add bearer token](how-to-use-apis.md#add-bearer-token).
105105

106106
### Format data
107107

@@ -164,7 +164,7 @@ Keep the following considerations in mind while working with the Import Jobs API
164164
The [Delete Jobs API](/rest/api/digital-twins/dataplane/jobs) is a data plane API that allows you to delete all models, twins, and relationships in an instance with a single API call. Delete Jobs API operations are also available as [CLI commands](/cli/azure/dt/job/deletion). Visit the API documentation to see the request details for creating a delete job and checking its status.
165165

166166
To make sure all elements are deleted, follow these recommendations while using the Delete Jobs API:
167-
* For instructions on how to generate a bearer token to authenticate API requests, see [Get bearer token](how-to-use-apis.md#add-bearer-token).
167+
* For instructions on how to generate a bearer token to authenticate API requests, see [Add bearer token](how-to-use-apis.md#add-bearer-token).
168168
* If you recently imported a large number of entities to your graph, wait for some time and verify that all elements are synchronized in your graph before beginning the delete job.
169169
* Stop all operations on the instance, especially upload operations, until the delete job is complete.
170170

articles/digital-twins/how-to-use-apis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This article contains information about the following steps:
2222

2323
Azure Digital Twins has two sets of APIs that you can work with: data plane and control plane. For more about the difference between these API sets, see [Azure Digital Twins APIs and SDKs](concepts-apis-sdks.md). This article contains information for both API sets.
2424

25-
For more information about `.http` file support in Visual Studio, see [Use .http files in Visual Studio 2022](/aspnet/core/test/http-files?view=aspnetcore-8.0).
25+
For more information about `.http` file support in Visual Studio, see [Use .http files in Visual Studio 2022](/aspnet/core/test/http-files).
2626

2727
## Prerequisites
2828

@@ -44,7 +44,7 @@ Open Visual Studio on your machine, and create a new project. Use the **ASP.NET
4444

4545
:::image type="content" source="media/how-to-use-apis/new-project.png" alt-text="Screenshot of an ASP.NET Core Empty project template in Visual Studio." lightbox="media/how-to-use-apis/new-project.png":::
4646

47-
Follow the instructions in [Create an .http file](/aspnet/core/test/http-files?view=aspnetcore-8.0#create-an-http-file) to create a new `.http` file in your project.
47+
Follow the instructions in [Create an .http file](/aspnet/core/test/http-files#create-an-http-file) to create a new `.http` file in your project.
4848

4949
### Add variables
5050

0 commit comments

Comments
 (0)