Access Logs
Gets the log file for a specific session.
| Name | Description | Notes |
|---|---|---|
| URL | /api/uploads/<sid>/logs |
<sid> represents the session ID |
| Method | Get |
Responses
| Code | Reason |
|---|---|
| 200 | Successful getting said log file |
| 403 | An attempt at gaining access to the file system is made |
| 404 | Log file not found |
$.get("/api/uploads/_432nevsr3/logs", function(resp) {
$("#logs").text(resp);
});