OAuthRequest
Overview
JSOAuthRequest
provides a streamlined way to create and execute OAuth requests within an application. It supports various HTTP verbs, such as GET, POST, PUT, DELETE, and PATCH, enabling flexible interactions with OAuth-enabled APIs. This wrapper simplifies the process of setting up requests by offering methods to add headers, parameters, and payloads.
Headers can be defined using addHeader
, and body parameters can be specified with addBodyParameter
. The setPayload
function allows for setting the request's body payload, useful for scenarios involving larger data transmissions. For adding parameters, addParameter
intelligently determines whether to place the parameter in the body or as a query string based on the HTTP verb. Additionally, addQuerystringParameter
explicitly manages query string additions.
The class also supports OAuth-specific parameters like scope
and others prefixed with oauth_
through the addOAuthParameter
method. The execute
method runs the configured request and returns an OAuthResponse
object containing details such as HTTP status codes and the response body.
Methods Summarized
void
Add a body parameter to the request.
void
Allows setting a header on the request object.
void
Add an OAuth parameter, like 'scope', 'realm' or with the 'oauth_' prefix
void
Add a body or a query string parameter, depending on the request type.
void
Add a query string parameter.
Execute a request that was created with the OAuth service.
void
Set body payload.
Methods Detailed
addBodyParameter(key, value)
Add a body parameter to the request.
Parameters
Returns: void
Sample
addHeader(header, value)
Allows setting a header on the request object.
Parameters
Returns: void
Sample
addOAuthParameter(key, value)
Add an OAuth parameter, like 'scope', 'realm' or with the 'oauth_' prefix
Parameters
Returns: void
addParameter(key, value)
Add a body or a query string parameter, depending on the request type. If the request allows a body (POST, PUT, DELETE, PATCH) then it adds it as a body parameter. Otherwise it is added as a query string parameter.
Parameters
Returns: void
addQuerystringParameter(key, value)
Add a query string parameter.
Parameters
Returns: void
execute()
Execute a request that was created with the OAuth service.
Returns: OAuthResponse the OAuthResponse object
Sample
setPayload(data)
Set body payload.
Parameters
String data ;
Returns: void
Sample
Last updated