昂首阔步:不同API版本的标头不同

时间:2019-07-18 10:57:19

标签: php symfony4 swagger-ui swagger-2.0

我为请求设置了以下注释。

  
      
  • @SWG \ Get(      
        
    • tags = {“产品”},
    •   
    • summary =“返回产品类别列表”,
    •   
    • description =“返回产品类别列表”,
    •   
    • consumes = {“ application / json”},
    •   
    • produces = {“ application / vnd.printdeal-api.v1”,“ application / vnd.printdeal-api.v2”},
    •   
    • @SWG \ ExternalDocumentation(
    •   
    • url =“ https://apidoc.printdeal.com/categories/”,
    •   
    • description =“请参阅我们的文档网站,以获取产品类别”,
    •   
    • ),
    •   
    • @SWG \ Response(response = 200,description =“成功操作”),
    •   
    • @SWG \ Response(response = 401,description =“验证失败”),
    •   
    • @SWG \ Response(响应= 500,description =“检索产品类别失败”),
    •   
    • security = {{“ UserId”:{},“ Secret”:{}}}
    •   
    •   
  •   

哪个为Response content type下拉字段提供了两个值。

我想知道是否有任何方法可以在不使用JavaScript的情况下为/ v1路径选择application/vnd.printdeal-api.v1和为v2之类的路径选择application / vnd.printdeal-api.v2?

0 个答案:

没有答案