![]() |
Qore SalesforceRestClient Module Reference 2.0.1
|
class for Salesforce.com REST connections; returns SalesforceRestClient::SalesforceRestClient objects More...
Public Member Functions | |
| constructor (hash< auto > config, *hash< auto > attr) | |
| creates the SalesforceRestConnection connection object | |
| constructor (string name, string description, string url, hash< auto > attributes={}, hash< auto > options={}) | |
| creates the SalesforceRestConnection connection object | |
| *string | getAppName () |
| Returns the data provider application name this connection serves, if any. | |
| DataProvider::AbstractDataProvider | getDataProvider (*hash< auto > constructor_options) |
| returns a data provider object for this connection | |
| *hash< auto > | getOAuth2AuthHeaders () |
| Returns headers to use with OAuth2 authorization / token requests. | |
| string | getOAuth2OptionName (string opt) |
| Returns the OAuth2 option name for this connection. | |
| hash< auto > | getOAuth2Options () |
| Returns OAuth2 options in a standard format. | |
| string | getType () |
returns "sfrests" | |
| bool | hasDataProvider () |
| returns True as this connection returns a data provider with the getDataProvider() method | |
| Qore::AbstractPollOperation | startPollConnect (*Logger::LoggerInterface logger) |
| Called to start a non-blocking polling ping operation on the remote REST server. | |
Protected Member Functions | |
| checkAuthCodeFeature () | |
| Sets the auth code feature if supported. | |
| hash< ConnectionSchemeInfo > | getConnectionSchemeInfoImpl () |
| Returns the ConnectionSchemeInfo hash for this object. | |
| SalesforceRestClient | getImpl (bool connect=True, *hash< auto > rtopts) |
| returns a SalesforceRestClient::SalesforceRestClient object | |
| *string | getPingPath () |
Returns the ping path from the ping_path option. | |
| *hash< auto > | processOAuth2TokenResponseImpl (hash< auto > resp) |
| Processes OAuth2 login responses and returns updated options. | |
| setChildCapabilities () | |
| Sets child data provider capabilities. | |
class for Salesforce.com REST connections; returns SalesforceRestClient::SalesforceRestClient objects
In addition to all options supported by RestClientConnection, this connection class supports the following options:
api: the Salesforce.com API to use; use "auto" (the default) to use the latest API versionoauth2_client_id: (required) the Salesforce.com "consumer key" for the Connected Appoauth2_client_secret: (required) the Salesforce.com "consumer secret" for the Connected Appoauth2_auth_url: default value "https://login.salesforce.com/services/oauth2/authorize" oauth2_token_url: default value "https://login.salesforce.com/services/oauth2/token" (used for logging in to Salesforce.com)oauth2_logout_url: default value "https://login.salesforce.com/services/oauth2/revoke" | SalesforceRestClient::SalesforceRestConnection::constructor | ( | hash< auto > | config, |
| *hash< auto > | attr ) |
creates the SalesforceRestConnection connection object
| config | with the following keys:
|
| attr | optional connection attributes
|
| CONNECTION-OPTION-ERROR | missing or invalid connection option or attribute |
| SalesforceRestClient::SalesforceRestConnection::constructor | ( | string | name, |
| string | description, | ||
| string | url, | ||
| hash< auto > | attributes = {}, | ||
| hash< auto > | options = {} ) |
creates the SalesforceRestConnection connection object
| name | the name of the connection |
| description | connection description |
| url | connection URL (potentially with password info) |
| attributes | various attributes. See below |
| options | connection options |
See AbstractConnection::constructor() for attributes and options reference.
| *string SalesforceRestClient::SalesforceRestConnection::getAppName | ( | ) |
Returns the data provider application name this connection serves, if any.
| DataProvider::AbstractDataProvider SalesforceRestClient::SalesforceRestConnection::getDataProvider | ( | *hash< auto > | constructor_options | ) |
returns a data provider object for this connection
| constructor_options | any additional constructor options for the data provider |
| DATA-PROVIDER-ERROR | this object does not support the data provider API |
|
protected |
returns a SalesforceRestClient::SalesforceRestClient object
| connect | if True, then the connection is returned already connected |
| rtopts | this connection type does not accept any runtime options, so this parameter is ignored |
| *hash< auto > SalesforceRestClient::SalesforceRestConnection::getOAuth2AuthHeaders | ( | ) |
Returns headers to use with OAuth2 authorization / token requests.
| string SalesforceRestClient::SalesforceRestConnection::getOAuth2OptionName | ( | string | opt | ) |
Returns the OAuth2 option name for this connection.
| hash< auto > SalesforceRestClient::SalesforceRestConnection::getOAuth2Options | ( | ) |
Returns OAuth2 options in a standard format.
| bool SalesforceRestClient::SalesforceRestConnection::hasDataProvider | ( | ) |
returns True as this connection returns a data provider with the getDataProvider() method
| Qore::AbstractPollOperation SalesforceRestClient::SalesforceRestConnection::startPollConnect | ( | *Logger::LoggerInterface | logger | ) |
Called to start a non-blocking polling ping operation on the remote REST server.