You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* upstream/main:
[skip ci] Updated translations via Crowdin
Add sqlite vscode extension to Gitpod configuration (go-gitea#21552)
Replace all instances of fmt.Errorf(%v) with fmt.Errorf(%w) (go-gitea#21551)
Fix package access for admins and inactive users (go-gitea#21580)
Allow for resolution of NPM registry paths that match upstream (go-gitea#21568)
Added missing headers on user packages page (go-gitea#21172)
Record OAuth client type at registration (go-gitea#21316)
Copy file name to clipboardExpand all lines: docs/content/doc/developers/oauth2-provider.md
+6
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,12 @@ To use the Authorization Code Grant as a third party application it is required
44
44
45
45
Currently Gitea does not support scopes (see [#4300](https://github.com/go-gitea/gitea/issues/4300)) and all third party applications will be granted access to all resources of the user and their organizations.
46
46
47
+
## Client types
48
+
49
+
Gitea supports both confidential and public client types, [as defined by RFC 6749](https://datatracker.ietf.org/doc/html/rfc6749#section-2.1).
50
+
51
+
For public clients, a redirect URI of a loopback IP address such as `http://127.0.0.1/` allows any port. Avoid using `localhost`, [as recommended by RFC 8252](https://datatracker.ietf.org/doc/html/rfc8252#section-8.3).
0 commit comments