Skip to content

Commit 1c96e6c

Browse files
authored
Merge pull request #175316 from jcruiz/patch-1
Fast follows on Request API rollout
2 parents 2f4c54c + d5e9a94 commit 1c96e6c

File tree

3 files changed

+3
-13
lines changed

3 files changed

+3
-13
lines changed

articles/active-directory/verifiable-credentials/TOC.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
- name: Samples
4444
expanded: true
4545
items:
46-
- name: Sample Node App
46+
- name: Sample Applications
4747
href: https://github.com/Azure-Samples/active-directory-verifiable-credentials
4848
- name: Sample Issuer
4949
href: https://didvc-issuer-sample.azurewebsites.net/

articles/active-directory/verifiable-credentials/get-started-request-api.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -32,21 +32,12 @@ To get an access token, your app must be registered with the Microsoft identity
3232

3333
### Get an access token
3434

35-
Use the [OAuth 2.0 client credentials grant flow](../../active-directory/develop/v2-oauth2-client-creds-grant-flow.md) to acquire the access token using the of the Microsoft identity platform. To get a token by using the client credentials grant, send a POST request to the `/token` endpoint of the Microsoft identity platform.
36-
37-
To acquire an access token, we recommend that you use a trusted oauth library. In this tutorial, we use the Microsoft Authentication Library [MSAL](../../active-directory/develop/msal-overview.md). MSAL is a Microsoft provided library that simplifies adding authentication and authorization to your app that can call a secure web API.
35+
Use the [OAuth 2.0 client credentials grant flow](../../active-directory/develop/v2-oauth2-client-creds-grant-flow.md) to acquire the access token using the of the Microsoft identity platform. We recommend that you use a trusted oauth library. In this tutorial, we use the Microsoft Authentication Library [MSAL](../../active-directory/develop/msal-overview.md). MSAL is a Microsoft provided library that simplifies adding authentication and authorization to your app that can call a secure web API.
3836

3937
# [HTTP](#tab/http)
4038

4139
```http
42-
POST /{tenant}/oauth2/v2.0/token HTTP/1.1 //Line breaks for clarity
43-
Host: login.microsoftonline.com
44-
Content-Type: application/x-www-form-urlencoded
45-
46-
client_id=12345678-0000-0000-00000000000000000
47-
&scope=bbb94529-53a3-4be5-a069-7eaf2712b826/.default
48-
&client_secret=sampleCredentia1s
49-
&grant_type=client_credentials
40+
Pleaes refer to to the Microsoft Authentication Library (MSAL) documentation for more information on how to acquire tokens via HTTP.
5041
```
5142

5243
# [C#](#tab/csharp)

articles/active-directory/verifiable-credentials/issuance-request-api.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ The issuance request payload contains information about your verifiable credenti
8686
},
8787
"issuance": {
8888
"type": "VerifiedCredentialExpert",
89-
"manifest": "https://beta.did.msidentity.com/v1.0/12345678-0000-0000-0000-000000000000/verifiableCredential/contracts/VerifiedCredentialExpert1",
9089
"pin": {
9190
"value": "3539",
9291
"length": 4

0 commit comments

Comments
 (0)