Generating Hypermedia links in a Web API

后端 未结 4 727
星月不相逢
星月不相逢 2021-02-01 19:12

I\'m curious to know how others have dealt with the issue of generating hypermedia links for their web APIs? Specifically, I\'m using ASP.NET Web API, and am torn between having

4条回答
  •  渐次进展
    2021-02-01 19:37

    I prefer option two (adding the hypermedia links later in the pipeline) and blogged about doing this yesterday.

    The solution was to "enrich" my resources with hypermedia links before they are returned to the client using a message handler.

提交回复
热议问题