Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7d6ce0f
Updated Context and theme information (#86)
NormSohl Feb 13, 2018
2686a3e
Updates to icon size (#88)
NormSohl Feb 13, 2018
7125c60
Merge branch 'master' into live
Feb 13, 2018
fa22639
Merge branch 'master' into live
Feb 13, 2018
6eb6336
Merge branch 'master' into live
Feb 14, 2018
ed5a148
fixed typo (#91)
NormSohl Feb 14, 2018
588878c
Merge branch 'master' into live
Feb 26, 2018
7db7663
Parameters were incorrect, or wrong order (depending on which overloa…
daltskin Feb 27, 2018
bb36c5b
Added sample code extract to demonstrate AsTeamsChannelAccounts() met…
daltskin Feb 27, 2018
feb6780
Merge branch 'master' into live
Mar 1, 2018
2944e23
Authentication, Control library (#104)
NormSohl Mar 2, 2018
da9009d
Merge branch 'master' into live
Mar 2, 2018
3ca741f
Update resources (#105)
NormSohl Mar 3, 2018
d82dd2b
Refactoring of auth content (#106)
billbliss Mar 3, 2018
9588e1b
Billbl auth redirect (#107)
billbliss Mar 3, 2018
5440712
Billbl auth redirect (#108)
billbliss Mar 3, 2018
f42c2ac
Update .openpublishing.redirection.json
Mar 5, 2018
252d43c
Update .openpublishing.redirection.json
Mar 5, 2018
f700618
Update .openpublishing.redirection.json
Mar 5, 2018
2ebb577
Update .openpublishing.redirection.json
Mar 5, 2018
eee8169
Update .openpublishing.redirection.json
Mar 5, 2018
a8a252b
Deleting Messages (#110)
NormSohl Mar 5, 2018
f07fef2
Merge branch 'master' into live
Mar 5, 2018
15164af
Updated sign-in card (#112)
NormSohl Mar 7, 2018
52be77d
Manifest version correction
ReneeSundaram Mar 20, 2018
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
9 changes: 9 additions & 0 deletions .openpublishing.redirection.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"redirections": [
{
"source_path": "msteams-platform/concepts/authentication.md",
"redirect_url": "/microsoftteams/platform/concepts/authentication/authentication",
"redirect_document_id": false
}
]
}
10 changes: 9 additions & 1 deletion msteams-platform/concepts/bots/bots-context.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
title: Get context for your bot
description: Describes how to get context for bots in Microsoft Teams
keywords: teams bots context
ms.date: 02/27/2018
---

# Get context for your Microsoft Teams bot
Expand Down Expand Up @@ -79,7 +80,14 @@ await context.PostAsync($"People in this conversation: {sb.ToString()}");
```

> [!NOTE]
> The `GetTeamsConversationMembersAsync(teamId, tenantId)` override is now obsolete. If your code uses this override, update it to use `IConversations.GetConversationMembersAsync(conversationId)`; then use `AsTeamsChannelAccount` to get the extended properties.
> The `GetTeamsConversationMembersAsync(teamId, tenantId)` override is now obsolete. If your code uses this override, update it to use `IConversations.GetConversationMembersAsync(conversationId)` and use `AsTeamsChannelAccount` to get the extended properties, for example:
>```csharp
>var members = await connector.Conversations.GetConversationMembersAsync(message.Conversation.Id);
>foreach (var member in members.AsTeamsChannelAccounts())
>{
> [...]
>}
>```

#### Node.js example

Expand Down
2 changes: 1 addition & 1 deletion msteams-platform/concepts/cards-actions.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ A *card* is a user-interface (UI) container for short or related pieces of infor
Supported by Microsoft Teams:
* [Hero card](~/concepts/cards-actions#hero-card)
* [Thumbnail card](~/concepts/cards-actions#thumbnail-card)
* Sign-in card

Supported with modifications:
* [Office 365 Connector card](#office-365-connector-card)—the `heroImage`, `hideOriginalBody`, and `startGroup` properties are not currently supported, and Office 365 Connectors do not render properly in iOS.
* Sign-in card—the `signin` action is not supported. You can replace the button action with `openUrl` to get the desired result.

Not supported:
* Adaptive card
Expand Down
2 changes: 1 addition & 1 deletion msteams-platform/publishing/office-store-guidance.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ In the Seller Dashboard:

![Office Seller Dashboard app overview](~/assets/images/submission/sdoverviewcrop.png)

* **App package** – Upload your properly formatted 1.0 manifest. Note that the manifest information prepopulates many of the following fields.
* **App package** – Upload your properly formatted 1.x manifest. Note that the manifest information prepopulates many of the following fields.
* **Submission title** – The name of your app.
* **Version** – Auto-populated from the manifest.
* **Release date** – By default, today's date. This means that your app is eligible to be published as soon as it passes validation. If you want to delay publication, specify the date. Please note: Validation times vary, and there is no guarantee the validation process will be done by the specified date.
Expand Down
3 changes: 3 additions & 0 deletions msteams-platform/redirects/authentication.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---
redirect_url: /microsoftteams/platform/concepts/authentication/authentication
---
2 changes: 1 addition & 1 deletion msteams-platform/scenarios/bots-personal-conversations.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ Activity newActivity = new Activity()
};

// Post the message to chat conversation with user
await client.Conversations.SendToConversationAsync(newActivity, response.Id);
await client.Conversations.SendToConversationAsync(newActivity);
```

#### Node.js example
Expand Down