D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
erp.dentostock.com
/
config
/
Filename :
forrest.php
back
Copy
<?php /** * Configuration options for Salesforce Oauth settings and REST API defaults. */ return [ /* * Options include WebServer, UserPassword, UserPasswordSoap, ClientCredentials and OAuthJWT */ 'authentication' => env('SF_AUTH_METHOD', 'WebServer'), /* * Enter your credentials * Username and Password are only necessary for UserPassword & UserPasswordSoap flows. * Likewise, callbackURI is only necessary for WebServer flow. * OAuthJWT requires a key, username, and private key (SF_CONSUMER_SECRET) */ 'credentials' => [ //Required: 'consumerKey' => env('SF_CONSUMER_KEY'), 'consumerSecret' => env('SF_CONSUMER_SECRET'), 'callbackURI' => env('SF_CALLBACK_URI'), 'loginURL' => env('SF_LOGIN_URL'), // Only required for UserPassword authentication: 'username' => env('SF_USERNAME'), // Security token might need to be amended to password unless IP Address is whitelisted 'password' => env('SF_PASSWORD'), // Only required for OAuthJWT authentication: 'privateKey' => '', ], /* * These are optional authentication parameters that can be specified for the WebServer flow. * https://help.salesforce.com/apex/HTViewHelpDoc?id=remoteaccess_oauth_web_server_flow.htm&language=en_US */ 'parameters' => [ 'display' => '', 'immediate' => false, 'state' => '', 'scope' => '', 'prompt' => '', ], /* * Default settings for resource requests. * Format can be 'json', 'xml' or 'none' * Compression can be set to 'gzip' or 'deflate' */ 'defaults' => [ 'method' => 'get', 'format' => 'json', 'compression' => false, 'compressionType' => 'gzip', ], 'client' => [ 'http_errors' => true, 'verify' => false, ], /* * Where do you want to store access tokens fetched from Salesforce. The type of storage will persist * Salesforce token when user refreshes the page. If you choose 'object', the token is stored on the object * instance and will persist as long as the object remains in memory. */ 'storage' => [ 'type' => 'session', // Options include: 'session', 'cache', 'object', or class instance of Omniphx\Forrest\Interfaces\StorageInterface 'path' => 'forrest_', // unique storage path to avoid collisions 'expire_in' => 3600, // number of seconds to expire cache/session 'store_forever' => false, // never expire cache/session ], /* * If you'd like to specify an API version manually it can be done here. * Format looks like '32.0' */ 'version' => '', /* * Optional (and not recommended) if you need to override the instance_url returned from Saleforce */ 'instanceURL' => '', /* * Language */ 'language' => 'en_US', ];