Google GAuth

Google GAuth

Description: The GAuth Component implements a Google-specific OAuth comsumer. This component supports OAuth 1.0a. For background information refer to a href=http://code.google.com/apis/accounts/docs/OAuth.htmlOAuth for Web Applications and the a href=http://code.google.com/apis/gdata/docs/auth/oauth.htmlGData developer guide for OAuth..
Scheme: gauth
Syntax: gauth:name
Maven: org.apache.camel/camel-gae/2.16.1

Represents a GAuth Endpoint. Instances can have one of two names, either authorize for requesting an unauthorized request token or upgrade for upgrading an authorized request token to an access token. The corresponding endpoint URIs are gauth:authorize and gauth:upgrade , respectively.

Name Kind Group Required Default Type Enum Description
name path producer true org.apache.camel.component.gae.auth.GAuthEndpoint.Name Returns the endpoint name.
callback parameter producer java.lang.String Returns the value of callback query parameter in the gauth:authorize endpoint URI.
consumerKey parameter producer java.lang.String Sets the consumer key. This key is generated when a web application is registered at Google. @param consumerKey consumer key to set.
consumerSecret parameter producer java.lang.String Sets the consumer secret. This secret is generated when a web application is registered at Google. Only set the consumer secret if the HMAC-SHA1 signature method shall be used.
scope parameter producer java.lang.String Returns the value of the scope query parameter in gauth:authorize endpoint URI. This can be a single scope or a comma-separated list of scopes.
exchangePattern parameter advanced InOnly org.apache.camel.ExchangePattern InOnly
RobustInOnly
InOut
InOptionalOut
OutOnly
RobustOutOnly
OutIn
OutOptionalIn
Sets the default exchange pattern when creating an exchange
synchronous parameter advanced false boolean Sets whether synchronous processing should be strictly used, or Camel is allowed to use asynchronous processing (if supported).