Informatica ActiveVOS
- Informatica ActiveVOS 9.2.4.6
- All Products
OAuth Provider
| Select a provider from the list
|
Key (required)
| Represents the OAuth client ID, used to authorize a client. You must follow the procedure from the provider to obtain the key. For example, LinkedIn requires you to fill in a form online to receive a key and secret.
|
Secret (required)
| Secret text given by the OAuth provider. Used during authorization.
|
Scope (optional)
| Scope represent the subdomain of the OAuth provider that the OAuth client wants to access. Ex:
https://docs.google.com/feeds/ is a scope value to access the Google docs feed. This is optional from the OAuth system service perspective, but can be mandatory based on the target OAuth provider.
|
RedirectURL (optional)
| This is usually required by OAuth2.0 providers. The response of authorization with a verifier string is redirected to this URL. Usually the verifier string is a query parameter (in the form
url?code=verifierString ).
|
<?xml version='1.0' encoding='UTF-8'?> <oaconfig:oauthProviders xmlns:oaconfig="http://schemas.activebpel.org/OAuth/2011/08/01/aeoauthProviderConfig.xsd" targetNamespace="http://schemas.activebpel.org/OAuth/2011/08/01/aeoauthProviderConfig.xsd"> <!-- name of the provider and version. Any text and oauth version --> <oaconfig:provider name="ACMEOAuthProvider" oauthVersion="1.0"> <oaconfig:requestTokenEndpoint verb="POST"> https://oauth.acme.com/ws/oauth/request_token </oaconfig:requestTokenEndpoint> <oaconfig:accessTokenEndpoint verb="POST"> https://oauth.acme.com/ws/oauth/access_token </oaconfig:accessTokenEndpoint> <oaconfig:authUrl verb="GET"> https://oauth.acme.com/ws/oauth/confirm_access?oauth_token=%s </oaconfig:authUrl> </oaconfig:provider> </oaconfig:oauthProviders>