博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
如何使 WebAPI 自动生成漂亮又实用在线API文档
阅读量:5050 次
发布时间:2019-06-12

本文共 4865 字,大约阅读时间需要 16 分钟。

1.前言

1.1

是一个简单的Restful API 测试和文档工具。简单、漂亮、易用()。通过读取JSON 配置显示API. 项目本身仅仅也只依赖一些 html,css.js静态文件. 你可以几乎放在任何Web容器上使用。

1.2

是.NET类库,可以将WebAPI所有开放的控制器方法生成对应的JSON配置。再通过 显示出来。类库中已经包含 。所以不需要额外安装。

2.快速开始

  • 创建项目 OnlineAPI来封装百度音乐服务() ,通过API可以搜索、获取音乐的信息和播放连接。

我尽量删除一些我们demo中不会用到的一些文件,使其看上去比较简洁。

Swashbuckle配置文件

  • WebAPI 安装
Install-Package Swashbuckle
  • 代码注释生成文档说明。
    是通过生成的XML文件来读取注释的,生成 ,JSON 配置中的说明的。
    安装时会在项目目录 App_Start 文件夹下生成一个 SwaggerConfig.cs 配置文件,用于配置 相关展示行为的。如图:

Swashbuckle配置文件

  • 将配置文件大概99行注释去掉并修改为
c.IncludeXmlComments(GetXmlCommentsPath(thisAssembly.GetName().Name));
  • 并在当前类中添加一个方法
/// /// /// /// 
protected static string GetXmlCommentsPath(string name){ return string.Format(@"{0}\bin\{1}.XML", AppDomain.CurrentDomain.BaseDirectory, name);}
  • 紧接着你在此Web项目属性生成选卡中勾选 “XML 文档文件”,编译过程中生成类库的注释文件

生成XML

  • 添加百度音乐 3个API

WebAPI

  • 访问 http://<youhost>/swagger/ui/index,最终显示效果

WebAPI

  • 我们通过API 测试API 是否成功运行

WebAPI

3.添加自定义HTTP Header

在开发移动端 API时常常需要验证权限,验证参数放在Http请求头中是再好不过了。WebAPI配合过滤器验证权限即可

首先我们需要创建一个 IOperationFilter 接口的类。IOperationFilter

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Http;using System.Web.Http.Description;using System.Web.Http.Filters;using Swashbuckle.Swagger;namespace OnlineAPI.Utility{    public class HttpHeaderFilter : IOperationFilter    {        public void Apply(Operation operation, SchemaRegistry schemaRegistry, ApiDescription apiDescription)        {            if (operation.parameters == null) operation.parameters = new List
(); var filterPipeline = apiDescription.ActionDescriptor.GetFilterPipeline(); //判断是否添加权限过滤器 var isAuthorized = filterPipeline.Select(filterInfo => filterInfo.Instance).Any(filter => filter is IAuthorizationFilter); //判断是否允许匿名方法 var allowAnonymous = apiDescription.ActionDescriptor.GetCustomAttributes
().Any(); if (isAuthorized && !allowAnonymous) { operation.parameters.Add(new Parameter { name = "access-key", @in = "header", description = "用户访问Key", required = false, type = "string" }); } } }}

在 SwaggerConfig.cs 的 EnableSwagger 配置匿名方法类添加一行注册代码

c.OperationFilter
();

添加Web权限过滤器

using System;using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Http;using System.Text;using System.Web;using System.Web.Http;using System.Web.Http.Controllers;using Newtonsoft.Json;namespace OnlineAPI.Utility{    ///     ///     ///     public class AccessKeyAttribute : AuthorizeAttribute    {        ///         /// 权限验证        ///         ///         /// 
protected override bool IsAuthorized(HttpActionContext actionContext) { var request = actionContext.Request; if (request.Headers.Contains("access-key")) { var accessKey = request.Headers.GetValues("access-key").SingleOrDefault(); //TODO 验证Key return accessKey == "123456789"; } return false; } /// /// 处理未授权的请求 /// /// protected override void HandleUnauthorizedRequest(HttpActionContext actionContext) { var content = JsonConvert.SerializeObject(new {State = HttpStatusCode.Unauthorized}); actionContext.Response = new HttpResponseMessage { Content = new StringContent(content, Encoding.UTF8, "application/json"), StatusCode = HttpStatusCode.Unauthorized }; } }}

在你想要的ApiController 或者是 Action 添加过滤器

[AccessKey]

最终显示效果

WebAPI

4.显示上传文件参数

SwaggerUI 有上传文件的功能和添加自定义HTTP Header 做法类似,只是我们通过特殊的设置来标示API具有上传文件的功能

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Http.Description;using Swashbuckle.Swagger;namespace OnlineAPI.Utility{    ///     ///     ///     public class UploadFilter : IOperationFilter    {        ///         ///     文件上传        ///         ///         ///         ///         public void Apply(Operation operation, SchemaRegistry schemaRegistry, ApiDescription apiDescription)        {            if (!string.IsNullOrWhiteSpace(operation.summary) && operation.summary.Contains("upload"))            {                operation.consumes.Add("application/form-data");                operation.parameters.Add(new Parameter                {                    name = "file",                    @in = "formData",                    required = true,                    type = "file"                });            }        }    }}

在 SwaggerConfig.cs 的 EnableSwagger 配置匿名方法类添加一行注册代码

c.OperationFilter
();

WebAPI

API 文档展示效果

WebAPI

5.版本和资源

你可以通过下列连接获取相关说明。

OnlineAPI Demo 项目下载
Swashbuckle 项目地址:
swagger-ui 项目地址:
swagger-ui 官网地址:

转载于:https://www.cnblogs.com/Arrays/p/5146194.html

你可能感兴趣的文章
动态调用WCF服务
查看>>
oracle导出/导入 expdp/impdp
查看>>
类指针
查看>>
css修改滚动条样式
查看>>
2018.11.15 Nginx服务器的使用
查看>>
Kinect人机交互开发实践
查看>>
百度编辑器UEditor ASP.NET示例Demo 分类: ASP.NET...
查看>>
JAVA 技术类分享(二)
查看>>
Symfony翻译教程已开课
查看>>
TensorFlow2.0矩阵与向量的加减乘
查看>>
NOIP 2010题解
查看>>
javascript中的each遍历
查看>>
String中各方法多数情况下返回新的String对象
查看>>
浅谈tcp粘包问题
查看>>
UVA11524构造系数数组+高斯消元解异或方程组
查看>>
排序系列之——冒泡排序、插入排序、选择排序
查看>>
爬虫基础
查看>>
jquery.lazyload延迟加载图片第一屏问题
查看>>
数据库连接
查看>>
delphi.指针.PChar
查看>>