this string has no description
0
debugging handle change.md
1go code:
2
3```go
4 fmt.Println("authserverMeta", authserverMeta.AuthorizationEndpoint)
5 fmt.Println("authserverMeta", authserverMeta.GrantTypesSupported)
6 fmt.Println("authserverMeta", authserverMeta.ScopesSupported)
7 fmt.Println("scopes", scopes)
8 info, err := o.ClientApp.SendAuthRequest(ctx, authserverMeta, scopes, loginHint)
9```
10
11logs:
12
13```
14authserverMeta https://tngl.sh/oauth/authorize
15authserverMeta [authorization_code refresh_token]
16authserverMeta [atproto transition:email transition:generic transition:chat.bsky]
17scopes [atproto repo:sh.tangled.publicKey repo:sh.tangled.repo repo:sh.tangled.repo.pull repo:sh.tangled.repo.pull.comment repo:sh.tangled.repo.artifact repo:sh.tangled.repo.issue repo:sh.tangled.repo.issue.comment repo:sh.tangled.repo.collaborator repo:sh.tangled.knot repo:sh.tangled.knot.member repo:sh.tangled.spindle repo:sh.tangled.spindle.member repo:sh.tangled.graph.follow repo:sh.tangled.feed.star repo:sh.tangled.feed.reaction repo:sh.tangled.label.definition repo:sh.tangled.label.op repo:sh.tangled.string repo:sh.tangled.actor.profile blob:*/* rpc:sh.tangled.repo.create?aud=* rpc:sh.tangled.repo.delete?aud=* rpc:sh.tangled.repo.merge?aud=* rpc:sh.tangled.repo.hiddenRef?aud=* rpc:sh.tangled.repo.deleteBranch?aud=* rpc:sh.tangled.repo.setDefaultBranch?aud=* rpc:sh.tangled.repo.forkSync?aud=* rpc:sh.tangled.repo.forkStatus?aud=* rpc:sh.tangled.repo.mergeCheck?aud=* rpc:sh.tangled.pipeline.cancelPipeline?aud=* rpc:sh.tangled.repo.addSecret?aud=* rpc:sh.tangled.repo.removeSecret?aud=* rpc:sh.tangled.repo.listSecrets?aud=* identity:handle]
182026/03/12 12:47:22 WARN auth server request failed request=PAR statusCode=400 body="map[error:use_dpop_nonce error_description:Authorization server requires nonce in DPoP proof]"
192026/03/12 12:47:22 WARN auth server request failed request=PAR statusCode=400 body="map[error:invalid_scope error_description:Scope \"identity:handle\" is not declared in the client metadata]"
202026/03/12 12:47:22 failed to start elevated auth flow: auth request failed: PAR request failed (HTTP 400): invalid_scope
21```