A diet Tap option for handling atproto sync
15

Configure Feed

Select the types of activity you want to include in your feed.

atproto/atclient: password auth refresh should use method post (#1278)

Fix `PasswordAuth#Refresh` using the wrong method.

authored by

bnewbold and committed by
GitHub
(Jan 22, 2026, 3:50 PM -0800) 5389f148 1c2af7dd

+1 -1
+1 -1
atproto/atclient/password_auth.go
··· 144 144 } 145 145 146 146 u := a.Session.Host + "/xrpc/com.atproto.server.refreshSession" 147 - req, err := http.NewRequestWithContext(ctx, http.MethodGet, u, nil) 147 + req, err := http.NewRequestWithContext(ctx, http.MethodPost, u, nil) 148 148 if err != nil { 149 149 return err 150 150 }