Skip to content

Keith-Zh/LA-Hacks-BackEnd-Public

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 

Repository files navigation

LAHack-Backend

API

baseUrl:

localhost: http://localhost:5000/lahacks-82b71/us-central1/api
firebase: 待定
  • Get All Records
Method: GET
URL: /records
Response:
[
  {
    "userId":"userId",
    "lon": 123.11,
    "lat": 45.67,
    "text": "1234"
  }
]
  • Get One Record
Method: GET
URL: /records/{documentId}

Response:
{
  "userId":"userId",
  "lon": 123.11,
  "lat": 45.67,
  "text": "1234"
}

  • Upload Record
Method: POST
Content-Type: multipart/form-data
URL: /records

Request:
{
  "audio": audioFile,
  "userId":"userId",
  "lon": 123.11,
  "lat": 45.67,
  "encoding": "FLAC" || "AMR_WB" || "AMR",
  "rateHertz": 48000
}

Response:
statusCode: 201 or 500
data: none

  • Upload User Data:
Method: POST
Content-Type: application/json
URL: /users

Request:
{
  "userId":"userId123",
  "firstName":"abc",
  "lastName":"cde",
  "email": "[email protected]",
  "createdTime":"createdTime"
}


Response:
statusCode: 201 or 500
data:
{
  "userId":"userId123",
  "firstName":"abc",
  "lastName":"cde",
  "email": "[email protected]",
  "createdTime":"createdTime"
}

Tables

Users

Table: users

metadata:
{
  "userId":"userId123",
  "firstName":"abc",
  "lastName":"cde",
  "email": "[email protected]",
  "createdTime":"createdTime"
}

### Records
Table: records

metadata: { "userId":"userId", "lon": 123.11, "lat": 45.67, "audioUrl": "https://firebasestorage.googleapis.com/v0/b/lahacks-82b71.appspot.com/o/792227734297.mp3?alt=media&token=dbe57f34-7266-438c-8f72-fdbfc2ec3815", "audioPath": "gs://lahacks-82b71.appspot.com/792227734297.mp3", "text": "text", "encoding": "FLAC", "sampleRateHertz": 16000 }

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published