A fork of the Cocoon PDS but being made more distributed.
11

Configure Feed

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

invert check for native client metadata

Hailey (Jul 15, 2025, 9:06 PM -0700) 4c6db2f1 c74cd8d7

+1 -1
+1 -1
oauth/client/manager.go
··· 289 289 return nil, errors.New("at least one `redirect_uri` is required") 290 290 } 291 291 292 - if metadata.ApplicationType == "native" && metadata.TokenEndpointAuthMethod == "none" { 292 + if metadata.ApplicationType == "native" && metadata.TokenEndpointAuthMethod != "none" { 293 293 return nil, errors.New("native clients must authenticate using `none` method") 294 294 } 295 295