python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Designing POST response body for different types of responses
From my client application I make a POST call to a \validate end-point. This call is made to execute the controller on the server side and not to create any resource. In response, server can provide o...
Naveen
Votes: 0
Answers: 1
Where to place the resource root id in the url?
I have resources linked like this:
A->B->C->D
I want to design a REST API to retrieve the D elements inside of A
Which is the best design approach?
api/v1/A/{a-id}/D
api/v1/D/A/{a-id}
api/...
Rodrigo
Votes: 0
Answers: 2
What is the point of encrypting user passwords on the frontend?
I'm working with an API that requires the user's password to be encrypted with the server's public key before sending to the server. If the whole request, including username/password/etc. is being sen...
the_midnight_developer
Votes: 0
Answers: 1
How to structure a microservice management layer calls
I am building a microservice that will have a management layer, and another corresponding microservice for a public api. The management layer's client will be imported into the api service as well as ...
lagoon
Votes: 0
Answers: 1