我正在使用Web应用程序,它将使用从作曲家休息服务器生成的api。是否有关于作曲家休息服务器的api端点的任何文档,以便我可以编写我的http get和post调用。我主要希望它在UI端完成我的多用户故事。
答案 0 :(得分:0)
您是否看过swagger.json端点?
我认为它会为您提供您正在寻找的信息。
http://localhost:3000/explorer/swagger.json
额外信息 在多用户模式下运行时,/ wallet端点也应出现在swagger.json中(仅使用OAuth2.0教程进行测试)。简短摘录如下:
{
"swagger":"2.0",
"info":{
"version":"1.0.0",
"title":"LoopBack Application"
},
"basePath":"/api",
"paths":{
"/wallet":{
"get":{
"tags":[
"Wallet"
],
"summary":"Get all of the business network cards in the wallet",
"operationId":"Card.getAllCards",
"parameters":[
...
...