Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 518 Bytes

README.md

File metadata and controls

31 lines (22 loc) · 518 Bytes

SSW-345

Stevens Institute of Technology SSW 345 (Modeling and Simulation)

Homework 4

POST /share

Sends a json object to the server and replies with a link where the object can be retrieved.

body

    ...some json object you want to store

response

{
    "success": true,
    "link":"http://localhost:3000/<uid>"
}

GET /share/:id

Retrieves and deletes a previously sent json object by its unique id.

response

    ...some json object you previously stored