|
| 1 | +--- |
| 2 | +date: "2019-04-19:44:00+01:00" |
| 3 | +title: "OAuth2 提供者" |
| 4 | +slug: "oauth2-provider" |
| 5 | +weight: 41 |
| 6 | +toc: false |
| 7 | +draft: false |
| 8 | +menu: |
| 9 | + sidebar: |
| 10 | + parent: "developers" |
| 11 | + name: "OAuth2 提供者" |
| 12 | + weight: 41 |
| 13 | + identifier: "oauth2-provider" |
| 14 | +--- |
| 15 | + |
| 16 | +# OAuth2 提供者 |
| 17 | + |
| 18 | +**目錄** |
| 19 | + |
| 20 | +{{< toc >}} |
| 21 | + |
| 22 | +Gitea 支援作為 OAuth2 提供者,能讓第三方程式能在使用者同意下存取 Gitea 的資源。此功能自 1.8.0 版開始提供。 |
| 23 | + |
| 24 | +## Endpoint |
| 25 | + |
| 26 | +| Endpoint | URL | |
| 27 | +| ---------------------- | --------------------------- | |
| 28 | +| Authorization Endpoint | `/login/oauth/authorize` | |
| 29 | +| Access Token Endpoint | `/login/oauth/access_token` | |
| 30 | + |
| 31 | +## 支援的 OAuth2 Grant |
| 32 | + |
| 33 | +目前 Gitea 只支援 [**Authorization Code Grant**](https://tools.ietf.org/html/rfc6749#section-1.3.1) 標準並額外支援下列擴充標準: |
| 34 | + |
| 35 | +- [Proof Key for Code Exchange (PKCE)](https://tools.ietf.org/html/rfc7636) |
| 36 | +- [OpenID Connect (OIDC)](https://openid.net/specs/openid-connect-core-1_0.html#CodeFlowAuth) |
| 37 | + |
| 38 | +若想要讓第三方程式使用 Authorization Code Grant,需先在「設定」(`/user/settings/applications`)中註冊一個新的應用程式。 |
| 39 | + |
| 40 | +## Scope |
| 41 | + |
| 42 | +目前 Gitea 尚未支援 scope (參見 [#4300](https://github.com/go-gitea/gitea/issues/4300)),所有的第三方程式都可獲得該使用者及他所屬的組織中所有資源的存取權。 |
| 43 | + |
| 44 | +## 範例 |
| 45 | + |
| 46 | +**備註:** 此範例未使用 PKCE。 |
| 47 | + |
| 48 | +1. 重新導向使用者到 authorization endpoint 以獲得他同意授權存取資源: |
| 49 | + <!-- 1. Redirect to user to the authorization endpoint in order to get his/her consent for accessing the resources: --> |
| 50 | + |
| 51 | + ```curl |
| 52 | + https://[YOUR-GITEA-URL]/login/oauth/authorize?client_id=CLIENT_ID&redirect_uri=REDIRECT_URI& response_type=code&state=STATE |
| 53 | + ``` |
| 54 | + |
| 55 | + 在設定中註冊應用程式以獲得 `CLIENT_ID`。`STATE` 是一個隨機的字串,它將在使用者授權後發送回您的應用程式。`state` 參數是選用的,但應該要用它來防止 CSRF 攻擊。 |
| 56 | + |
| 57 | +  |
| 58 | + |
| 59 | + 使用者將會被詢問是否授權給您的應用程式。如果它們同意了,使用者將被重新導向到 `REDIRECT_URL`,例如: |
| 60 | + |
| 61 | + ```curl |
| 62 | + https://[REDIRECT_URI]?code=RETURNED_CODE&state=STATE |
| 63 | + ``` |
| 64 | + |
| 65 | +1. 使用重新導向提供的 `code`,您可以要求一個新的應用程式和 Refresh Token。Access Token Endpoint 接受 POST 請求使用 `application/json` 或 `application/x-www-form-urlencoded` 類型的請求內容,例如: |
| 66 | + |
| 67 | + ```curl |
| 68 | + POST https://[YOUR-GITEA-URL]/login/oauth/access_token |
| 69 | + ``` |
| 70 | + |
| 71 | + ```json |
| 72 | + { |
| 73 | + "client_id": "YOUR_CLIENT_ID", |
| 74 | + "client_secret": "YOUR_CLIENT_SECRET", |
| 75 | + "code": "RETURNED_CODE", |
| 76 | + "grant_type": "authorization_code", |
| 77 | + "redirect_uri": "REDIRECT_URI" |
| 78 | + } |
| 79 | + ``` |
| 80 | + |
| 81 | + 回應: |
| 82 | + |
| 83 | + ```json |
| 84 | + { |
| 85 | + "access_token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJnbnQiOjIsInR0IjowLCJleHAiOjE1NTUxNzk5MTIsImlhdCI6MTU1NTE3NjMxMn0.0-iFsAwBtxuckA0sNZ6QpBQmywVPz129u75vOM7wPJecw5wqGyBkmstfJHAjEOqrAf_V5Z-1QYeCh_Cz4RiKug", |
| 86 | + "token_type": "bearer", |
| 87 | + "expires_in": 3600, |
| 88 | + "refresh_token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJnbnQiOjIsInR0IjoxLCJjbnQiOjEsImV4cCI6MTU1NzgwNDMxMiwiaWF0IjoxNTU1MTc2MzEyfQ.S_HZQBy4q9r5SEzNGNIoFClT43HPNDbUdHH-GYNYYdkRfft6XptJBkUQscZsGxOW975Yk6RbgtGvq1nkEcklOw" |
| 89 | + } |
| 90 | + ``` |
| 91 | + |
| 92 | + `CLIENT_SECRET` 是產生給此應用程式的唯一密鑰。請記住該密鑰只會在您於 Gitea 建立/註冊應用程式時出現一次。若您遺失密鑰,您必須在該應用程式的設定中重新產生密鑰。 |
| 93 | + |
| 94 | + `access_token` 請求中的 `REDIRECT_URI` 必須符合 `authorize` 請求中的 `REDIRECT_URI`。 |
| 95 | + |
| 96 | +1. 發送 [API requests](https://docs.gitea.io/en-us/api-usage#oauth2) 時使用 `access_token` 以存取使用者的資源。 |
0 commit comments