gpt4 book ai didi

asp.net - 微软团队 : How to send a Message/Card to a User from an external App without an Bot

转载 作者:行者123 更新时间:2023-12-05 06:28:36 25 4
gpt4 key购买 nike

我们有一个外部 ASP.NET 4.7 应用程序(在 Azure 应用程序服务中),它应该将消息/卡片发送给团队中的一个特定用户(没有机器人)。

我设法通过连接器/WebHook 将卡片发送到 channel ,但无法针对特定用户。

我该怎么做/需要哪些服务?

请尽可能简单 :-)

谢谢

==========================

更新:示例代码:

Private Shared Sub SendToTeams(ChannelPath As AppSettingsKey, Card As TeamsCard)

If String.IsNullOrWhiteSpace(ChannelPath) Then Return

Dim Channel = AppSettings.GetAppSetting(ChannelPath)
If String.IsNullOrWhiteSpace(Channel) Then Return

Dim ChannelWebHook = "https://outlook.office.com"

Dim Client = New RestClient(ChannelWebHook)

Dim Req = New RestRequest(Method.POST) With {
.Resource = Channel,
.RequestFormat = DataFormat.Json
}

Dim JSON = Card.SaveJSON(False)

Req.AddParameter("application/json; charset=utf-8", JSON, ParameterType.RequestBody)

Dim Erg = Client.Execute(Req)

Logger.Info("Teams:", Erg.StatusCode)
End Sub

还有一些助手:

Friend Class TeamsCard
<JsonProperty(PropertyName:="@context")> Public Property context As String = "https://schema.org/extensions"
<JsonProperty(PropertyName:="@type")> Public Property type As String = "MessageCard"
Public Property themeColor As String = "ff6100"
Public Property title As String = "Title"
Public Property summary As String = "Summary"
Public Property text As String = "Text"
Public Property potentialAction As New List(Of TeamsCardAction)
End Class


Friend Class TeamsCardAction
<JsonProperty(PropertyName:="@type")> Public Property type As String = "OpenUri"
Public Property name As String = "ButtonText"
Public Property targets As New List(Of TeamsCardButtonTarget)
Public Sub New(Text As String, URI As String)
name = Text
targets.Add(New TeamsCardButtonTarget With {.uri = URI})
End Sub
End Class


Friend Class TeamsCardButtonTarget
Public Property os As String = "default"
Public Property uri As String = "https://google.com"
End Class

最佳答案

目前,Office 365 Connectos仅支持 channel 。这些不能是用户向个人用户发送消息/卡片。

向 Microsoft Teams 个人用户发送消息的唯一选项是使用 Bots .

关于asp.net - 微软团队 : How to send a Message/Card to a User from an external App without an Bot,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54252789/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com