Ryukyo / Kodokura

Match with other users based on your interests and chat with them anonymously
https://kodokura-eb787.web.app/
1 stars 2 forks source link

Match making API specification for MVP #31

Closed bakisunsan closed 4 years ago

bakisunsan commented 4 years ago

POST /chatqueue

{ "id": "xxxxx" }

GET /chatqueue/:userId

{ "status": "MATCHED"; "matchedUserId", "xxxxx", "name": "xxxx", "avatar_url", "", "chatroom", "", "expriredAt", "" }

{ "status": "NOT_YET_MATCHED"; }

bakisunsan commented 4 years ago
{
  "user1": {
    "answers": [
      true,
      false,
      false,
      false,
      false,
      true,
      false,
      true,
      false,
      false
    ],
    "lang": "en",
    "queueStatus": "Waiting",
    "friendlist": [
      "name1",
      "name2"
    ],
    "createdAt": 1599455496400,
    "status": "ACTIVE",
    "email": "email",
    "blocklist": [
      "name3"
    ],
    "id": "u6AcBJKCW0m7oj3nmMBO",
    "avatar_url": "avatar_url",
    "name": "name"
  },
  "user2": {
    "score": 7,
    "blocklist": [],
    "queueStatus": "Waiting",
    "name": "tomoyuki",
    "id": "as9Gnd6zEUe1vUtZrcmG",
    "friendlist": [],
    "avatar_url": "",
    "email": "tomoyuki@tomomail.com",
    "status": "ACTIVE",
    "lang": "en",
    "answers": [
      true,
      false,
      false,
      false,
      false,
      false,
      false,
      false,
      true,
      false
    ],
    "createdAt": 1599455539084
  }
}