Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Doc Improvement][Real-time Media Call & Meeting for Bots][4154113] #12120

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions msteams-platform/TOC.yml
Original file line number Diff line number Diff line change
Expand Up @@ -683,12 +683,12 @@
- name: Create Outgoing Webhooks
href: webhooks-and-connectors/how-to/add-outgoing-webhook.md
displayName: HMAC security token, message in channel, Teams message
- name: Create Incoming Webhooks
- name: Create Incoming Webhooks (Deprecated)
href: webhooks-and-connectors/how-to/add-incoming-webhook.md
displayName: share content in Microsoft Teams channels, external applications, message in channel, Teams message, incoming webhook
- name: Create connectors for Microsoft 365 Groups
- name: Create connectors for Microsoft 365 Groups (Deprecated)
href: webhooks-and-connectors/how-to/connectors-creating.md
- name: Create and send messages
- name: Create and send messages (Deprecated)
href: webhooks-and-connectors/how-to/connectors-using.md
displayName: MessageCard, Attachments, potentialAction, Send messages using cURL and PowerShell, Rate limiting for connectors, ActionCard, message in channel, Teams message
- name: Build cards and dialogs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,24 @@ Application-hosted media bots require .NET or C# and Windows Server. For more in
|---------------|----------|--------|
| Policy recording bot | This sample demonstrates how a bot can receive media streams for recording. | [View](https://github.com/microsoftgraph/microsoft-graph-comms-samples/tree/master/Samples/V1.0Samples/LocalMediaSamples/PolicyRecordingBot) |

## FAQ

<br>

<details>

<summary><b>What does the error "Microsoft.Graph.Communications.Core.Exceptions.ServiceException: 'Code: 9999 Message: Unknown internal server error'" typically indicate?</b></summary>

* Verify that the app has the `Calls.JoinGroupCall.All` and `Calls.InitiateGroupCall.All` permissions granted and admin consented.
* Enable detailed logging in your application to capture more information about the error.
* Ensure that the joinParams being passed to the AddAsync method are correctly formed and contain all required information.
* Double-check the values for JoinUrl, MeetingId, and other parameters.
* Ensure that the scenarioId being used is unique for each call. Reusing scenario IDs can sometimes cause issues.

<br>

</details>

## Next step

> [!div class="nextstepaction"]
Expand Down