WxWorkRobot.MsDependency 1.3.0

dotnet add package WxWorkRobot.MsDependency --version 1.3.0
NuGet\Install-Package WxWorkRobot.MsDependency -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="WxWorkRobot.MsDependency" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WxWorkRobot.MsDependency --version 1.3.0
#r "nuget: WxWorkRobot.MsDependency, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install WxWorkRobot.MsDependency as a Cake Addin
#addin nuget:?package=WxWorkRobot.MsDependency&version=1.3.0

// Install WxWorkRobot.MsDependency as a Cake Tool
#tool nuget:?package=WxWorkRobot.MsDependency&version=1.3.0

WxWorkBot

企业微信机器人,开箱即用。目前已实现:

  • 纯文本消息
  • Markdown消息

版本更新Tip

  • 1.3.0: 替换掉Flurl.Http,因为其可能会出现不能向后兼容的情况

WxWorkBotClient类直接使用

先安装 WxWorkRobot 包: alternate text is missing from this package README image,然后参考使用示例:

var webhookKey = "d77f7c20-90ba-462a-9251-36ecdd63c5d8";
var wxWorkBotClient = WxWorkBotClient.WithKey(webhookKey);
await wxWorkBotClient.SendText("测试");

依赖注入(Microsoft Dependency)

先安装 WxWorkRobot.MsDependency包: alternate text is missing from this package README image

配置服务AddWxWorkBotService:

public void ConfigureServices(IServiceCollection services)
{
    // 默认webhook key
    var webhookKey = "d77f7c20-90ba-462a-9251-36ecdd63c5d8";
    services.AddWxWorkBotService(webhookKey);
}

或appsettings.json中配置有:

"WxWorkRobot": {
  "WebhookKey": "d77f7c20-90ba-462a-9251-36ecdd63c5d8"
}

然后依然是AddWxWorkBotService:

public void ConfigureServices(IServiceCollection services)
{
    services.AddWxWorkBotService(Configuration);
}

构造函数直接构造实例并使用,参考使用示例:

public class SampleService
{
    private readonly WxWorkBotClient client;

    public SampleService(WxWorkBotClient client)
    {
        this.client = client;
    }

    public async Task SendTextTest()
    {
        await client.SendText("测试");
    }
}

如果如果想要使用非默认webhook key:

private readonly WxWorkBotClient client;

public WxWorkBotClientTest(WxWorkBotClient client)
{
    this.client = client;
}

[Theory]
[InlineData("Test1")]
public async Task SendText(string text)
{
    // 覆盖默认webhook key
    client.SetKey("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx");
    await client.SendText(text);
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.0 106 4/3/2024
1.2.0 96 1/22/2024
1.1.0 616 2/2/2023
1.0.0 299 2/1/2023