Skip to content

Commit a45df4e

Browse files
committed
Fix rendering issues
1 parent a45eb1b commit a45df4e

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

articles/active-directory/develop/scenario-web-api-call-api-acquire-token.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,8 @@ public class ApiController {
9393

9494
A Python web API will need to use some middleware to validate the bearer token received from the client. The web API can then obtain the access token for downstream API using MSAL Python library by calling the [`acquire_token_on_behalf_of`](https://msal-python.readthedocs.io/en/latest/?badge=latest#msal.ConfidentialClientApplication.acquire_token_on_behalf_of) method. A sample demonstrating this flow with MSAL Python is not yet available.
9595

96+
---
97+
9698
## Next steps
9799

98100
> [!div class="nextstepaction"]

articles/active-directory/develop/scenario-web-api-call-api-app-configuration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ The On-behalf-of(OBO) flow is used to obtain a token to call the downstream web
216216

217217
A Python web API will need to use some middleware to validate the bearer token received from the client. The web API can then obtain the access token for downstream API using MSAL Python library by calling the [`acquire_token_on_behalf_of`](https://msal-python.readthedocs.io/en/latest/?badge=latest#msal.ConfidentialClientApplication.acquire_token_on_behalf_of) method. A sample demonstrating this flow with MSAL Python is not yet available.
218218

219+
---
219220

220221
You can also see an example of OBO flow implementation in [Node.js and Azure Functions](https://github.com/Azure-Samples/ms-identity-nodejs-webapi-onbehalfof-azurefunctions/blob/master/MiddleTierAPI/MyHttpTrigger/index.js#L61).
221222

articles/active-directory/develop/scenario-web-api-call-api-call-api.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,8 @@ private String callMicrosoftGraphMeEndpoint(String accessToken){
8383
# [Python](#tab/python)
8484
A sample demonstrating this flow with MSAL Python is not yet available.
8585

86+
---
87+
8688
## Next steps
8789

8890
> [!div class="nextstepaction"]

0 commit comments

Comments
 (0)