查看 Apigee Edge 說明文件。
前往
Apigee X說明文件。 資訊
Apigee Edge 會在一組政策中封裝 OAuth 1.0a 和 OAuth 2 功能。日常生活 管理符記和密鑰的週期管理,包括產生、驗證和儲存 。
本文件指定 OAuth 政策定義的流程變數。變數可以是 用來實作 OAuth 流程的自訂行為。如要瞭解 OAuth 使用方式,請參閱「OAuth」一節。
OAuth 2.0 流程變數
當個別 OAuth 政策出現時,就會填入這個表格中定義的流程變數。 因此,在 API Proxy 中運作的其他政策或應用程式也可以使用。 流程
驗證存取權杖政策 |
* API 產品變數 |
範例政策: <OAuthV2 name="VerifyAccessToken"> <Operation>VerifyAccessToken</Operation> <Scope>space-separated-scopes</Scope>* <AccessToken>flow.variable</AccessToken>* <AccessTokenPrefix>Bearer</AccessTokenPrefix>* </OAuthV2> 僅支援不記名符記。不支援 MAC 權杖。 根據預設,存取權杖必須在 Authorization HTTP 要求中傳遞 標題。 例如:
任何
如果未指定選用欄位,系統會根據 OAuth 2.0 擷取值。 規格。 |
產生授權碼政策 |
成功時設定的變數:
|
範例政策: <OAuthV2 name="GetAuthCode"> <Operation>GenerateAuthorizationCode</Operation> <ExpiresIn>1000<ExpiresIn> <ResponseType>flow.variable</ResponseType>* <ClientId>flow.variable</ClientId>* <RedirectUri>flow.variable</RedirectUri>* <Scope>flow.variable</Scope>* <State>flow.variable</State>* <Attributes>* <Attribute name=”1” ref=”flow.variable”>value1</Attribute> <Attribute name=”2” ref=”flow.variable”>value2</Attribute> </Attributes> </OAuthV2> * 選填 任何
如果未指定選用欄位,系統會根據 OAuth 2.0 擷取值。 規格。 屬性值是動態衍生自指定的流程變數,或 手動使用政策的預設值。 如果同時指定兩者,系統會優先採用流量變數。 |
針對授予類型授權碼、使用者憑證和 用戶端憑證 |
成功時設定的變數:
|
範例政策: <OAuthV2 name="GenerateAccessToken"> <Operation>GenerateAccessToken</Operation> <ExpiresIn>1000<ExpiresIn> <SupportedGrantTypes>* <GrantType>authorization_code</GrantType> <GrantType>password</GrantType> <GrantType>client_credentials</GrantType> </SupportedGrantTypes> <GrantType>flow.variable</GrantType>* <ClientId>flow.variable</ClientId>* <RedirectUri>flow.variable</RedirectUri>* <Scope>flow.variable</Scope>* <AppEndUser>flow.variable</AppEndUser>* <Code>flow.variable</Code>* <UserName>flow.variable</UserName>* <PassWord>flow.variable</PassWord>* <Attributes>* <Attribute name=”1” ref=”flow.variable”>value1</Attribute> <Attribute name=”2” ref=”flow.variable”>value2</Attribute> </Attributes> </OAuthV2> * 選填 任何
如果未指定選用欄位,系統會根據 OAuth 2.0 擷取值。 規格。 屬性值是動態衍生自指定的流程變數,或 手動使用政策的預設值。 如果同時指定兩者,系統會優先採用流量變數。 |
產生隱式授權類型的存取權杖政策 |
成功時設定的變數:
|
範例政策: <OAuthV2 name="GenerateAccessToken"> <Operation>GenerateAccessTokenImplicitGrant</Operation> <ExpiresIn>1000<ExpiresIn> <ResponseType>flow.variable></ResponseType>* <ClientId>flow.variable></ClientId>* <RedirectUri>flow.variable></RedirectUri>* <Scope>flow.variable></Scope>* <State>flow.variable></State>* <AppEndUser>flow.variable</AppEndUser>* <Attributes>* <Attribute name=”1” ref=”flow.variable”>value1</Attribute> <Attribute name=”2” ref=”flow.variable”>value2</Attribute> </Attributes> </OAuthV2> * 選填 任何
如果未指定選用欄位,系統會根據 OAuth 2.0 擷取值。 規格。 屬性值是動態衍生自指定的流程變數,或 手動使用政策的預設值。 如果同時指定兩者,系統會優先採用流量變數。 |
重新整理存取權杖政策 |
成功時設定的變數:
|
範例政策: <OAuthV2 name="RefreshAccessToken"> <Operation>RefreshAccessToken</Operation> <ExpiresIn>1000<ExpiresIn> <GrantType>flow.variable</GrantType>* <RefreshToken>flow.variable</RefreshToken>* </OAuthV2> * 選填 任何
如果未指定選用欄位,系統會根據 OAuth 2.0 擷取值。 規格。 |
取得用戶端屬性政策 |
範例政策: <GetOAuthV2Info name="GetClientAttributes"> <ClientId ref="{variable_name}"/> </GetOAuthV2Info> 範例政策: <GetOAuthV2Info name="GetClientAttributes"> <ClientId>{client_id}</ClientId> </GetOAuthV2Info> |
取得存取權杖屬性政策 |
成功時設定的變數:
|
範例政策: <GetOAuthV2Info name="GetTokenAttributes"> <AccessToken ref="{variable_name}"/> </GetOAuthV2Info> 範例政策: <GetOAuthV2Info name="GetTokenAttributes"> <AccessToken>{access_token}</AccessToken> </GetOAuthV2Info> |
取得授權碼屬性政策 |
範例政策: <GetOAuthV2Info name="GetAuthCodeAttributes"> <AuthorizationCode ref="{variable_name}"/> </GetOAuthV2Info> 範例政策: <GetOAuthV2Info name="GetAuthCodeAttributes"> <AuthorizationCode>{authorization_code}</AuthorizationCode> </GetOAuthV2Info> |
取得更新權杖屬性政策 |
範例政策: <GetOAuthV2Info name="GetTokenAttributes"> <RefreshToken ref="{variable_name}"/> </GetOAuthV2Info> 範例政策: <GetOAuthV2Info name="GetTokenAttributes"> <RefreshToken>{refresh_token}</RefreshToken> </GetOAuthV2Info> |
OAuth 1.0a 流程變數
當個別 OAuth 政策出現時,就會填入這個表格中定義的流程變數。 因此,在 API Proxy 中運作的其他政策或應用程式也可以使用。 流程
產生要求權杖政策
範例政策:
<OAuthV1 name="GenerateRequestToken"> <Operation>GenerateRequestToken</Operation> </OAuthV1>
成功時設定的變數:
oauth_token
oauth_token_secret
oauth_callback_confirmed
oauth_response
oauth_consumer_key
oauth_consumer_secret
產生存取權杖政策
範例政策:
<OAuthV1 name="GenerateAccessToken"> <Operation>GenerateAccessToken</Operation> </OAuthV1>
成功時設定的變數:
oauth_token
oauth_token_secret
oauth_response
oauth_consumer_key
oauth_consumer_secret
存取權杖驗證 政策
範例政策:
<OAuthV1 name="VerifyAccessToken"> <Operation>VerifyAccessToken</Operation> </OAuthV1>
成功時設定的變數:
oauth_token
oauth_token_secret
oauth_response
oauth_consumer_key
oauth_consumer_secret
驗證 API 金鑰政策
範例政策:
<GetOAuthV1Info name="VerifyApiKey"> <OAuthConfig>{config_name}</OAuthConfig>* <APIKey ref="{variable_name}" /> </GetOAuthV1Info>
* 選填
成功時設定的變數:
oauth_consumer_key
oauth_consumer_secret
驗證消費者政策
範例政策:
<GetOAuthV1Info name="VerifyConsumer"> <OAuthConfig>{config_name}</OAuthConfig>* <ConsumerKey ref="{variable_name}" /> </GetOAuthV1Info>
* 選填
成功時設定的變數:
oauth_consumer_key
oauth_consumer_secret
驗證權杖政策
範例政策:
<GetOAuthV1Info name="VerifyToken"> <OAuthConfig>{config_name}</OAuthConfig>* <RequestToken ref="{variable_name}" /> </GetOAuthV1Info>
* 選填
成功時設定的變數:
oauth_token
oauth_token_secret