Mud.Feishu
2.0.7
See the version list below for details.
dotnet add package Mud.Feishu --version 2.0.7
NuGet\Install-Package Mud.Feishu -Version 2.0.7
<PackageReference Include="Mud.Feishu" Version="2.0.7" />
<PackageVersion Include="Mud.Feishu" Version="2.0.7" />
<PackageReference Include="Mud.Feishu" />
paket add Mud.Feishu --version 2.0.7
#r "nuget: Mud.Feishu, 2.0.7"
#:package Mud.Feishu@2.0.7
#addin nuget:?package=Mud.Feishu&version=2.0.7
#tool nuget:?package=Mud.Feishu&version=2.0.7
Mud.Feishu
Mud.Feishu 是飞书服务端 SDK 的 .NET 适配版,提供完整的 HTTP API 客户端能力,支持 .NET Standard 2.0、.NET 6.0、.NET 8.0 和 .NET 10.0 平台。通过类型安全的 API 封装,让开发者能够在 .NET 应用程序中便捷、高效地集成飞书服务端功能。
特性
- 类型安全 - 强类型接口定义,编译时类型检查
- 模块化设计 - 按需注册 API 模块,减少不必要的依赖
- 自动令牌管理 - 智能缓存和刷新,无需手动维护
- 智能重试机制 - 内置重试策略,提高调用成功率
- 多应用支持 - 统一管理多个飞书应用
- 完整 API 覆盖 - 支持组织架构、消息、群聊、审批、任务等飞书核心功能
安装
dotnet add package Mud.Feishu
快速开始
1. 配置文件 (appsettings.json)
{
"FeishuApps": [
{
"AppKey": "default",
"AppId": "your_feishu_app_id",
"AppSecret": "your_feishu_app_secret",
"BaseUrl": "https://open.feishu.cn",
"TimeOut": 30,
"RetryCount": 3,
"RetryDelayMs": 1000,
"EnableLogging": true
}
]
}
2. 服务注册 (Program.cs)
using Mud.Feishu;
using Mud.Feishu.Extensions;
var builder = WebApplication.CreateBuilder(args);
// 注册飞书应用配置
builder.Services.AddFeishuApp(builder.Configuration);
// 方式一:懒人模式 - 注册所有 API 服务
builder.Services.CreateFeishuServicesBuilder()
.AddAllApis()
.Build();
// 方式二:建造者模式 - 按需注册
builder.Services.CreateFeishuServicesBuilder()
.AddOrganizationApi()
.AddMessageApi()
.AddChatGroupApi()
.AddApprovalApi()
.AddTaskApi()
.AddCardApi()
.AddAttendanceApi()
.AddDriveApi()
.AddWikiApi()
.AddDocxApi()
.Build();
// 方式三:模块枚举模式
builder.Services.AddFeishuServices(
FeishuModule.Organization,
FeishuModule.Message,
FeishuModule.ChatGroup
);
var app = builder.Build();
app.Run();
3. 使用 API 服务
using Mud.Feishu;
public class UserService
{
private readonly IFeishuV3User_Tenant _userApi;
public UserService(IFeishuV3User_Tenant userApi)
{
_userApi = userApi;
}
public async Task<FeishuApiResult<UserInfoResult>?> GetUserAsync(string userId)
{
return await _userApi.GetUserInfoByIdAsync(userId);
}
public async Task<FeishuApiResult<CreateOrUpdateUserResult>?> CreateUserAsync(CreateUserRequest request)
{
return await _userApi.CreateUserAsync(request);
}
}
API 模块
组织管理 (Organization)
用户管理
继承关系:IFeishuTenantV3User / IFeishuUserV3User → IFeishuV3User
| 接口类型 | 接口名称 | API 函数 | 说明 |
|---|---|---|---|
| 父类接口(公共) | IFeishuV3User |
UpdateUserAsync |
更新用户信息 |
GetUserInfoByIdAsync |
获取单个用户信息 | ||
GetUserByIdsAsync |
批量获取用户信息 | ||
GetUserByDepartmentIdAsync |
获取部门直属用户列表 | ||
| 租户令牌接口 | IFeishuTenantV3User |
CreateUserAsync |
创建用户(员工入职) |
| 继承父类所有方法 | UpdateUserIdAsync |
更新用户 ID | |
GetBatchUsersAsync |
通过手机号/邮箱获取用户 ID | ||
GetUsersByKeywordAsync |
通过关键词搜索用户 | ||
DeleteUserByIdAsync |
删除用户(员工离职) | ||
ResurrectUserByIdAsync |
恢复已删除用户 | ||
LogoutAsync |
退出用户登录态 | ||
GetJsTicketAsync |
获取 JSAPI 临时调用凭证 | ||
| 用户令牌接口 | IFeishuUserV3User |
GetUsersByKeywordAsync |
通过关键词搜索用户 |
| 继承父类所有方法 | GetUserInfoAsync |
获取当前用户信息 |
部门管理
继承关系:IFeishuTenantV3Departments / IFeishuUserV3Departments → IFeishuV3Departments
| 接口类型 | 接口名称 | API 函数 | 说明 |
|---|---|---|---|
| 父类接口(公共) | IFeishuV3Departments |
GetDepartmentInfoByIdAsync |
获取单个部门信息 |
GetDepartmentsByIdsAsync |
批量获取部门信息 | ||
GetDepartmentsByParentIdAsync |
获取子部门列表 | ||
GetParentDepartmentsByIdAsync |
获取父部门信息 | ||
| 租户令牌接口 | IFeishuTenantV3Departments |
CreateDepartmentAsync |
创建部门 |
| 继承父类所有方法 | UpdatePartDepartmentAsync |
更新部门部分信息 | |
UpdateDepartmentAsync |
更新部门全部信息 | ||
UpdateDepartmentIdAsync |
更新部门自定义 ID | ||
UnbindDepartmentChatAsync |
解绑部门群 | ||
DeleteDepartmentByIdAsync |
删除部门 | ||
| 用户令牌接口 | IFeishuUserV3Departments |
- | 仅继承父类方法 |
其他组织管理接口
| 接口名称 | 继承关系 | 说明 |
|---|---|---|
IFeishuTenantV3JobLevel |
- | 职级管理(仅租户令牌) |
IFeishuTenantV3JobTitle → IFeishuV3JobTitle |
继承父类 | 职务管理 |
IFeishuUserV3JobTitle → IFeishuV3JobTitle |
继承父类 | 职务管理 |
IFeishuTenantV3JobFamilies |
- | 职务族管理 |
IFeishuTenantV3UserGroup → IFeishuV3UserGroup |
继承父类 | 用户组管理 |
IFeishuTenantV3UserGroupMember → IFeishuV3UserGroupMember |
继承父类 | 用户组成员管理 |
IFeishuTenantV3Role → IFeishuV3Role |
继承父类 | 角色管理 |
IFeishuTenantV3RoleMember → IFeishuV3RoleMember |
继承父类 | 角色成员管理 |
IFeishuTenantV3Unit → IFeishuV3Unit |
继承父类 | 单位管理 |
IFeishuTenantV3WorkCity → IFeishuV3WorkCity |
继承父类 | 工作城市管理 |
IFeishuUserV3WorkCity → IFeishuV3WorkCity |
继承父类 | 工作城市管理 |
IFeishuTenantV3EmployeeType |
- | 人员类型管理 |
消息服务 (Messages)
继承关系:IFeishuTenantV1Message / IFeishuUserV1Message → IFeishuV1Message
| 接口类型 | 接口名称 | API 函数 | 说明 |
|---|---|---|---|
| 父类接口(公共) | IFeishuV1Message |
RevokeMessageAsync |
撤回消息 |
AddMessageReactionsAsync |
添加表情回复 | ||
GetMessageReactionsPageListAsync |
获取表情回复列表 | ||
DeleteMessageReactionsAsync |
删除表情回复 | ||
PinMessageAsync |
Pin 消息 | ||
DeletePinMessageAsync |
移除 Pin | ||
GetPinMessagePageListAsync |
获取 Pin 消息列表 | ||
| 租户令牌接口 | IFeishuTenantV1Message |
SendMessageAsync |
发送消息 |
| 继承父类所有方法 | ReplyMessageAsync |
回复消息 | |
EditMessageAsync |
编辑消息 | ||
ReceiveMessageAsync |
转发消息 | ||
MergeReceiveMessageAsync |
合并转发消息 | ||
ReceiveThreadsAsync |
转发话题 | ||
CreateMessageFollowUpAsync |
添加跟随气泡 | ||
GetMessageReadUsesAsync |
查询消息已读状态 | ||
GetHistoryMessageAsync |
获取历史消息 | ||
GetMessageFile |
获取消息内资源文件(小文件) | ||
GetMessageLargeFile |
获取消息内资源文件(大文件) | ||
GetContentListByMessageIdAsync |
获取消息内容 | ||
UploadFileAsync |
上传文件 | ||
UploadImageAsync |
上传图片 | ||
DownFileAsync |
下载文件(小文件) | ||
DownLargeFileAsync |
下载文件(大文件) | ||
DownImageAsync |
下载图片(小文件) | ||
DownLargeImageAsync |
下载图片(大文件) | ||
MessageUrgentAppAsync |
应用内消息加急 | ||
MessageUrgentSMSAsync |
短信消息加急 | ||
MessageUrgentPhoneAsync |
电话消息加急 | ||
UpdateUrlPreviewAsync |
更新 URL 预览 | ||
| 用户令牌接口 | IFeishuUserV1Message |
- | 仅继承父类方法 |
| 批量消息 | IFeishuV1BatchMessage_Tenant |
批量消息相关 | 批量消息管理 |
群聊管理 (ChatGroup)
继承关系:IFeishuTenantV1ChatGroup / IFeishuUserV1ChatGroup → IFeishuV1ChatGroup
| 接口类型 | 接口名称 | API 函数 | 说明 |
|---|---|---|---|
| 父类接口(公共) | IFeishuV1ChatGroup |
UpdateChatGroupByIdAsync |
更新群信息 |
DeleteChatGroupAsync |
解散群聊 | ||
GetChatGroupInoByIdAsync |
获取群信息 | ||
GetChatGroupPageListAsync |
获取群列表 | ||
GetChatGroupPageListByKeywordAsync |
搜索群列表 | ||
UpdateChatModerationAsync |
更新群发言权限 | ||
GetChatGroupModeratorPageListByIdAsync |
获取群发言权限信息 | ||
PutChatGroupTopNoticeAsync |
置顶消息/公告 | ||
DeleteChatGroupTopNoticeAsync |
取消置顶 | ||
GetChatGroupShareLinkByIdAsync |
获取群分享链接 | ||
| 租户令牌接口 | IFeishuTenantV1ChatGroup |
CreateChatGroupAsync |
创建群聊 |
| 继承父类所有方法 |
其他群聊相关接口:
| 接口名称 | 继承关系 | 说明 |
|---|---|---|
IFeishuTenantV1ChatGroupMember → IFeishuV1ChatGroupMember |
继承父类 | 群成员管理(租户令牌) |
IFeishuUserV1ChatGroupMember → IFeishuV1ChatGroupMember |
继承父类 | 群成员管理(用户令牌) |
IFeishuTenantV1ChatGroupAnnouncement → IFeishuV1ChatGroupAnnouncement |
继承父类 | 群公告管理(租户令牌) |
IFeishuUserV1ChatGroupAnnouncement → IFeishuV1ChatGroupAnnouncement |
继承父类 | 群公告管理(用户令牌) |
IFeishuTenantV1ChatTabs → IFeishuV1ChatTabs |
继承父类 | 群标签页管理(租户令牌) |
IFeishuUserV1ChatTabs → IFeishuV1ChatTabs |
继承父类 | 群标签页管理(用户令牌) |
IFeishuTenantV1ChatGroupMenu |
- | 群菜单管理(仅租户令牌) |
审批流程 (Approval)
| 接口名称 | 继承关系 | 说明 |
|---|---|---|
IFeishuTenantV4Approval |
- | 审批定义和实例管理(租户令牌) |
IFeishuTenantV4ApprovalTask |
- | 审批任务管理(租户令牌) |
IFeishuTenantV4ApprovalComments |
- | 审批评论管理(租户令牌) |
IFeishuTenantV4ApprovalExternal |
- | 第三方审批(租户令牌) |
IFeishuTenantV4ApprovalFile |
- | 审批文件管理(租户令牌) |
IFeishuTenantV4ApprovalQuery → IFeishuV4ApprovalQuery |
继承父类 | 审批查询(租户令牌) |
IFeishuUserV4ApprovalQuery → IFeishuV4ApprovalQuery |
继承父类 | 审批查询(用户令牌) |
租户令牌接口 IFeishuTenantV4Approval 主要 API 函数:
CreateApprovalAsync- 创建审批定义GetApprovalByCodeAsync- 获取审批定义信息CreateInstanceAsync- 创建审批实例CancelInstanceAsync- 撤回审批实例CarbonCopyInstanceAsync- 抄送审批实例PreviewInstanceAsync- 预览审批流程GetInstanceByIdAsync- 获取审批实例详情
任务管理 (Task)
继承关系:IFeishuTenantV2Task / IFeishuUserV2Task → IFeishuV2Task
| 接口类型 | 接口名称 | API 函数 | 说明 |
|---|---|---|---|
| 父类接口(公共) | IFeishuV2Task |
CreateTaskAsync |
创建任务 |
UpdateTaskAsync |
更新任务 | ||
GetTaskByIdAsync |
获取任务详情 | ||
DeleteTaskByIdAsync |
删除任务 | ||
AddMembersByIdAsync |
添加任务成员 | ||
RemoveMembersByIdAsync |
移除任务成员 | ||
GetTaskListsByIdAsync |
获取任务所在清单 | ||
AddTaskListsByIdAsync |
将任务加入清单 | ||
RemoveTaskListsByIdAsync |
将任务移出清单 | ||
AddTaskReminderByIdAsync |
添加任务提醒 | ||
RemoveTaskReminderByIdAsync |
移除任务提醒 | ||
AddTaskDependenciesByIdAsync |
添加任务依赖 | ||
RemoveTaskDependenciesByIdAsync |
移除任务依赖 | ||
CreateSubTaskAsync |
创建子任务 | ||
GetSubTasksPageListByIdAsync |
获取子任务列表 | ||
| 租户令牌接口 | IFeishuTenantV2Task |
- | 仅继承父类方法 |
| 用户令牌接口 | IFeishuUserV2Task |
- | 仅继承父类方法 |
其他任务相关接口:
| 接口名称 | 继承关系 | 说明 |
|---|---|---|
IFeishuTenantV2TaskCustomFields → IFeishuV2TaskCustomFields |
继承父类 | 自定义字段管理 |
IFeishuUserV2TaskCustomFields → IFeishuV2TaskCustomFields |
继承父类 | 自定义字段管理 |
IFeishuTenantV2TaskComments → IFeishuV2TaskComments |
继承父类 | 任务评论管理 |
IFeishuUserV2TaskComments → IFeishuV2TaskComments |
继承父类 | 任务评论管理 |
IFeishuTenantV2TaskAttachments → IFeishuV2TaskAttachments |
继承父类 | 任务附件管理 |
IFeishuUserV2TaskAttachments → IFeishuV2TaskAttachments |
继承父类 | 任务附件管理 |
IFeishuTenantV2TaskList → IFeishuV2TaskList |
继承父类 | 任务清单管理 |
IFeishuUserV2TaskList → IFeishuV2TaskList |
继承父类 | 任务清单管理 |
IFeishuTenantV2TaskSections → IFeishuV2TaskSections |
继承父类 | 任务分组管理 |
IFeishuUserV2TaskSections → IFeishuV2TaskSections |
继承父类 | 任务分组管理 |
IFeishuTenantV2TaskActivitySubscriptions → IFeishuV2TaskActivitySubscriptions |
继承父类 | 任务活动订阅 |
卡片管理 (Card)
| 接口名称 | API 函数 | 说明 |
|---|---|---|
IFeishuTenantV1Card |
CreateCardAsync |
创建卡片实体 |
UpdateCardSettingsByIdAsync |
更新卡片配置 | |
PartialUpdateCardByIdAsync |
局部更新卡片 | |
UpdateCardByIdAsync |
全量更新卡片 | |
IFeishuTenantV1CardElements |
卡片元素管理 | 元素操作 |
考勤管理 (Attendance)
| 接口名称 | API 函数 | 说明 |
|---|---|---|
IFeishuTenantV1AttendanceUserFlows |
BatchCreateUserFlowAsync |
导入打卡流水 |
GetUserFlowAsync |
获取打卡流水记录 | |
QueryUserFlowAsync |
批量查询打卡流水 | |
BatchDelUserFlowAsync |
删除打卡流水 | |
QueryUserTaskAsync |
查询打卡结果 | |
IFeishuTenantV1AttendanceGroups |
考勤组管理 | 组配置管理 |
IFeishuTenantV1AttendanceStats |
考勤统计 | 统计报表 |
云盘管理 (Drive)
继承关系:IFeishuTenantV1DriveFiles / IFeishuUserV1DriveFiles → IFeishuV1DriveFiles
| 接口类型 | 接口名称 | API 函数 | 说明 |
|---|---|---|---|
| 父类接口(公共) | IFeishuV1DriveFiles |
BatchQueryMetasAsync |
批量获取文件元数据 |
GetFileStatisticsByFileTokenAsync |
获取文件统计信息 | ||
GetFileViewRecordPageListByFileTokenAsync |
获取文件访问记录 | ||
CopyFileByFileTokenAsync |
复制文件 | ||
MoveFileByFileTokenAsync |
移动文件 | ||
DeleteFileByFileTokenAsync |
删除文件 | ||
CreateShortcutAsync |
创建快捷方式 | ||
UploadAllFileAsync |
上传文件(小文件) | ||
UploadPrepareFileAsync |
预上传(分片上传) | ||
UploadPartFileAsync |
上传分片 | ||
UploadFinishFileAsync |
完成分片上传 | ||
DownloadFileAsync |
下载文件 | ||
CreateImportTaskAsync |
创建导入任务 | ||
GetImportTaskAsync |
获取导入任务结果 | ||
CreateExportTaskAsync |
创建导出任务 | ||
GetExportTaskAsync |
获取导出任务结果 | ||
DownloadExportFileAsync |
下载导出文件 | ||
GetFileLikePageListByFileTokenAsync |
获取文件点赞列表 | ||
| 租户令牌接口 | IFeishuTenantV1DriveFiles |
- | 仅继承父类方法 |
| 用户令牌接口 | IFeishuUserV1DriveFiles |
- | 仅继承父类方法 |
其他云盘相关接口:
| 接口名称 | 继承关系 | 说明 |
|---|---|---|
IFeishuTenantV1DriveFolder → IFeishuV1DriveFolder |
继承父类 | 文件夹管理 |
IFeishuUserV1DriveFolder → IFeishuV1DriveFolder |
继承父类 | 文件夹管理 |
IFeishuTenantV1DriveFilesVersions → IFeishuV1DriveFilesVersions |
继承父类 | 文件版本管理 |
IFeishuUserV1DriveFilesVersions → IFeishuV1DriveFilesVersions |
继承父类 | 文件版本管理 |
IFeishuTenantV1DriveMedia → IFeishuV1DriveMedia |
继承父类 | 媒体文件管理 |
IFeishuUserV1DriveMedia → IFeishuV1DriveMedia |
继承父类 | 媒体文件管理 |
知识库 (Wiki)
继承关系:IFeishuTenantV2Wiki / IFeishuUserV2Wiki → IFeishuV2Wiki
| 接口类型 | 接口名称 | API 函数 | 说明 |
|---|---|---|---|
| 父类接口(公共) | IFeishuV2Wiki |
GetSpacesPageListAsync |
获取知识空间列表 |
GetSpaceInfoAsync |
获取知识空间信息 | ||
GetSpaceMemberPageListAsync |
获取知识空间成员列表 | ||
CreateSpaceMemberAsync |
添加知识空间成员 | ||
DeleteSpaceMemberAsync |
删除知识空间成员 | ||
UpdateSpaceSettingAsync |
更新知识空间设置 | ||
| 租户令牌接口 | IFeishuTenantV2Wiki |
- | 仅继承父类方法 |
| 用户令牌接口 | IFeishuUserV2Wiki |
- | 仅继承父类方法 |
知识节点接口:
| 接口名称 | 继承关系 | 说明 |
|---|---|---|
IFeishuTenantV2WikiNodes → IFeishuV2WikiNodes |
继承父类 | 知识节点管理 |
文档管理 (Docx)
| 接口名称 | 继承关系 | 说明 |
|---|---|---|
IFeishuTenantV1Docx → IFeishuV1Docx |
继承父类 | 飞书文档基础操作 |
IFeishuUserV1Docx → IFeishuV1Docx |
继承父类 | 飞书文档基础操作 |
IFeishuTenantV1DocxBlocks → IFeishuV1DocxBlocks |
继承父类 | 文档块操作 |
IFeishuUserV1DocxBlocks → IFeishuV1DocxBlocks |
继承父类 | 文档块操作 |
IFeishuV1Docx // 文档基础操作
IFeishuV1DocxBlocks // 文档块操作
功能列表:
- 文档创建和获取
- 文档块读取和更新
- 批量操作文档块
- 内容转换
多应用支持
Mud.Feishu 支持在同一个系统中管理多个飞书应用:
// 配置多个应用
builder.Services.AddFeishuApp(configure =>
{
configure.AddDefaultApp("default", "cli_xxx", "dsk_xxx");
configure.AddApp("hr-app", "cli_yyy", "dsk_yyy", opt =>
{
opt.TimeOut = 45;
opt.RetryCount = 5;
});
});
// 使用指定应用
public class MultiAppService
{
private readonly IFeishuAppManager _appManager;
public async Task UseSpecificAppAsync()
{
// 获取指定应用的 API
var userApi = _appManager.GetFeishuApi<IFeishuV3User_Tenant>("hr-app");
var result = await userApi.GetUserInfoByIdAsync("user_123");
}
// 使用应用上下文切换器
public async Task UseContextSwitcherAsync()
{
var contextSwitcher = _appManager.GetAppContextSwitcher();
using (contextSwitcher.UseApp("hr-app"))
{
// 在此作用域内,所有 API 调用都使用 hr-app 的凭证
}
}
}
配置选项
| 配置项 | 类型 | 默认值 | 说明 |
|---|---|---|---|
AppKey |
string | - | 应用唯一标识(必需) |
AppId |
string | - | 飞书应用 ID(必需) |
AppSecret |
string | - | 飞书应用密钥(必需) |
BaseUrl |
string | https://open.feishu.cn | API 基础地址 |
TimeOut |
int | 30 | HTTP 请求超时时间(秒) |
RetryCount |
int | 3 | 失败重试次数 |
RetryDelayMs |
int | 1000 | 重试延迟时间(毫秒) |
TokenRefreshThreshold |
int | 300 | 令牌刷新阈值(秒) |
EnableLogging |
bool | true | 是否启用日志记录 |
IsDefault |
bool | false | 是否为默认应用 |
自定义模块注册
Mud.Feishu 支持自定义模块注册器,方便扩展:
public class CustomModuleRegistrar : IFeishuModuleRegistrar
{
public FeishuModule Module => FeishuModule.All + 1;
public void Register(IServiceCollection services)
{
services.AddTransient<ICustomApi, CustomApi>();
}
}
// 注册自定义模块
builder.Services.CreateFeishuServicesBuilder()
.RegisterModule(new CustomModuleRegistrar())
.Build();
核心特性
自动令牌管理
SDK 内置了智能的令牌管理机制:
- 自动获取和缓存 access_token
- 令牌即将过期时自动刷新
- 支持应用令牌、租户令牌、用户令牌三种类型
- 高并发场景下的缓存击穿防护
智能重试机制
针对网络不稳定等场景,SDK 提供了可配置的重试策略:
- 可配置重试次数和延迟时间
- 支持指数退避策略
- 自动重试失败的 API 调用
类型安全
所有 API 都通过强类型接口定义:
- 编译时类型检查
- 完整的 XML 文档注释
- 智能提示支持
依赖项
| 包 | 版本 | 说明 |
|---|---|---|
| Mud.HttpUtils | v1.6.2 | HTTP 客户端工具类 |
| Mud.HttpUtils.Generator | v1.6.2 | HTTP 客户端代码生成器(编译时) |
| Mud.Feishu.Abstractions | * | 飞书 SDK 抽象层(同版本依赖) |
框架支持
- .NET Standard 2.0
- .NET 6.0
- .NET 8.0
- .NET 10.0
相关项目
- Mud.Feishu.Abstractions - 事件订阅抽象层
- Mud.Feishu.WebSocket - WebSocket 实时事件订阅
- Mud.Feishu.Webhook - Webhook HTTP 回调事件处理
- Mud.Feishu.Authentication - 用户认证中间件
- Mud.Feishu.Redis - Redis 分布式去重扩展
许可证
本项目采用 MIT 许可证 - 详见 LICENSE 文件
反馈与贡献
如有问题或建议,欢迎提交 Issue 或 Pull Request。
Mud.Feishu - 让飞书集成变得简单!
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 is compatible. 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 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 is compatible. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.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. |
-
.NETStandard 2.0
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.3)
- Microsoft.Extensions.Options (>= 8.0.2)
- Mud.Feishu.Abstractions (>= 2.0.7)
- Mud.HttpUtils (>= 1.6.5)
- System.Text.Json (>= 10.0.5)
-
net10.0
- Microsoft.Extensions.Configuration.Binder (>= 10.0.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.5)
- Microsoft.Extensions.Options (>= 10.0.5)
- Mud.Feishu.Abstractions (>= 2.0.7)
- Mud.HttpUtils (>= 1.6.5)
-
net6.0
- Microsoft.Extensions.Configuration.Binder (>= 8.0.2)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- Microsoft.Extensions.Logging.Abstractions (>= 8.0.3)
- Microsoft.Extensions.Options (>= 8.0.2)
- Mud.Feishu.Abstractions (>= 2.0.7)
- Mud.HttpUtils (>= 1.6.5)
-
net8.0
- Microsoft.Extensions.Configuration.Binder (>= 10.0.5)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 10.0.5)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.5)
- Microsoft.Extensions.Options (>= 10.0.5)
- Mud.Feishu.Abstractions (>= 2.0.7)
- Mud.HttpUtils (>= 1.6.5)
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 | |
|---|---|---|---|
| 3.0.0-preview3 | 95 | 5/22/2026 | |
| 3.0.0-preview2 | 118 | 5/11/2026 | |
| 3.0.0-preview1 | 156 | 5/1/2026 | |
| 2.1.3 | 165 | 5/22/2026 | |
| 2.1.2 | 139 | 5/12/2026 | |
| 2.1.1 | 110 | 5/11/2026 | |
| 2.1.0 | 129 | 5/1/2026 | |
| 2.0.9 | 196 | 4/24/2026 | |
| 2.0.8 | 169 | 4/12/2026 | |
| 2.0.7 | 174 | 4/7/2026 | |
| 2.0.6 | 127 | 4/5/2026 | |
| 2.0.5 | 212 | 3/28/2026 | |
| 2.0.4 | 131 | 3/19/2026 | |
| 2.0.3 | 119 | 2/26/2026 | |
| 2.0.2 | 147 | 1/30/2026 | |
| 2.0.1 | 146 | 1/27/2026 | |
| 1.2.2 | 151 | 1/19/2026 | |
| 1.2.1 | 140 | 1/16/2026 | |
| 1.2.0 | 144 | 1/14/2026 | |
| 1.1.2 | 219 | 1/11/2026 |