Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 639 Bytes

CONTRIBUTING.md

File metadata and controls

41 lines (29 loc) · 639 Bytes

開発者ガイド

必要機材

Sonyのカードリーダー PaSoRi SC-360/Pが必要。


使い方

必要なモジュールがインストールされていない場合は以下の通りインストール。

pip3 install -r requirement.txt
./main.py

止めるときはCTRL+C。


エンドポイントへ送るJSON

{
  // Example
  "status": "success", // status: string ("success" | "error" | "fatal")
  "user_id": 1         // user_id: number | null (is null iff status is not "success")
}
{
  // Another example
  "status": "error",
  "user_id": null
}