From 8706f8a90d39f902716439acd9e815654c9ff559 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Tue, 29 Mar 2022 17:30:26 +0900 Subject: [PATCH] Add note for debugging the backend Just in case I lose my terminal history, I'm saving a curl command used to test the backend. --- back_end/notes.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 back_end/notes.md diff --git a/back_end/notes.md b/back_end/notes.md new file mode 100644 index 0000000..837300f --- /dev/null +++ b/back_end/notes.md @@ -0,0 +1,5 @@ +Use something like: + + curl -X POST 127.0.0.1:1237 -H 'Content-Type: application/json' -d '{"type": "pairing_request"}' + +To debug the backend. See protocol specifications for what should work.