u
Anirudh Oppiliappan x@icyphox.sh
Mon, 13 Mar 2023 00:39:05 +0530
1 files changed,
10 insertions(+),
0 deletions(-)
jump to
M
masto.go
→
masto.go
@@ -11,6 +11,16 @@ elog.Printf("oauthorize: bad junk: %v", j)
http.Error(rw, "oauthorize: bad junk", http.StatusBadRequest) } +func apiapps(rw http.ResponseWriter, r *http.Request) { + j, err := junk.Read(r.Body) + if err != nil { + badjunk(rw, j) + } + + dlog.Println(j) + +} + func oauthorize(rw http.ResponseWriter, r *http.Request) { j, err := junk.Read(r.Body) if err != nil {