Skip to content
forked from the-oem/byob

Turing M4 Project - BYOB (Build Your Own Backend)

Notifications You must be signed in to change notification settings

jsullivan5/byob

 
 

Repository files navigation

BYOB 'FotoFinder' API

CircleCI

This implementation of BYOB is designed for use in photo applications, where enthusiasts can provide EXIF details about their photos, and connect photos to locations and cameras.

This is a REST API that uses JWT for endpoint authentication. All responses are returned in a standard JSON format, documented below.

Success 200/201 Responses:

{
  status: 'success',
  data: <returned data (array format)>
}

Failure 404 Responses:

{
  status: 'error',
  data: {
    error: <error message (string format)>,
  }
}

Failure 500 Responses:

{
  status: 'error',
  data: <error returned from server (object format)>,
}

Endpoints

Camera Resources

Locations Resources

Photos Resources

Authentication

About

Turing M4 Project - BYOB (Build Your Own Backend)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.8%
  • HTML 1.5%
  • CSS 0.7%