this repo has no description
0
fork

Configure Feed

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

include 'atproto' in scopes

+2 -2
+1 -1
atproto/auth/oauth/cmd/oauth-web-demo/main.go
··· 82 82 83 83 func runServer(cctx *cli.Context) error { 84 84 85 - scopes := []string{"transition:generic"} 85 + scopes := []string{"atproto", "transition:generic"} 86 86 bind := ":8080" 87 87 88 88 var config oauth.ClientConfig
+1 -1
atproto/auth/oauth/doc.go
··· 20 20 config := oauth.NewPublicConfig( 21 21 "https://app.example.com/client-metadata.json", 22 22 "https://app.example.com/oauth/callback", 23 - []string{"transition:generic"}, 23 + []string{"atproto", "transition:generic"}, 24 24 ) 25 25 26 26 // clients are "public" by default, but if they have secure access to a secret attestation key can be "confidential"