Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdngmnks/adaptive-cards-azure-functions-dotnet
A simple Azure function returning an Adaptive Card as HTML using the .NET SDK.
https://github.com/cdngmnks/adaptive-cards-azure-functions-dotnet
adaptive-cards azure-functions
Last synced: about 1 month ago
JSON representation
A simple Azure function returning an Adaptive Card as HTML using the .NET SDK.
- Host: GitHub
- URL: https://github.com/cdngmnks/adaptive-cards-azure-functions-dotnet
- Owner: cdngmnks
- License: mit
- Created: 2021-07-29T09:45:16.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-09-18T11:53:05.000Z (about 3 years ago)
- Last Synced: 2024-08-02T19:01:35.781Z (4 months ago)
- Topics: adaptive-cards, azure-functions
- Language: C#
- Homepage:
- Size: 19.5 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-adaptive-cards - Adaptive Cards - Azure Functions - A simple Azure function returning an Adaptive Card as HTML using the .NET SDK. (Uncategorized / Uncategorized)
README
# Adaptive Cards - Azure Functions (.NET)
## adaptiveCardRenderer
Function returning an Adaptive Card rendered as HTML, using the [Adaptive Card .NET HTML SDK](https://docs.microsoft.com/en-us/adaptive-cards/sdk/rendering-cards/net-html/getting-started).
example request:
```javascript
{
"type": "AdaptiveCard",
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"version": "1.0",
"hideOriginalBody": true,
"body": [
{
"type": "TextBlock",
"text": "Hello World!",
"wrap": true
}
]
}
```example response:
```html
```# References
* [Adaptive Cards](https://adaptivecards.io/)
* [Adaptive Card .NET HTML SDK](https://docs.microsoft.com/en-us/adaptive-cards/sdk/rendering-cards/net-html/getting-started)
* [Create C# function in Azure using VS Code](https://docs.microsoft.com/en-us/azure/azure-functions/create-first-function-vs-code-csharp)
* [Azure Functions JavaScript developer guide](https://docs.microsoft.com/en-us/azure/azure-functions/functions-reference-node)# Issues
To view or log issues, see [issues](https://github.com/cdngmnks/adaptive-cards-renderer-azure-function/issues).# License
Copyright (c) codingmonkeys doo. All Rights Reserved. Licensed under the [MIT license](https://github.com/cdngmnks/adaptive-cards-renderer-azure-function/blob/master/LICENSE).