You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Some apis in BFF are not following the principle of REST,
For example, http://localhost:8090/pets/detail?id={id}
Which stands for a collection in REST, but has an Id actually behave as a primary key which is not good to be a query param (or filter). Instead of this, we should use http://localhost:8090/pets/{id}.
The text was updated successfully, but these errors were encountered:
Some apis in BFF are not following the principle of REST,
For example,
http://localhost:8090/pets/detail?id={id}
Which stands for a collection in REST, but has an Id actually behave as a primary key which is not good to be a query param (or filter). Instead of this, we should use
http://localhost:8090/pets/{id}
.The text was updated successfully, but these errors were encountered: