1. Go to this page and download the library: Download eventfarm/restforcephp library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
eventfarm / restforcephp example snippets
namespace App;
use EventFarm\Restforce\Rest\OAuthAccessToken;
use EventFarm\Restforce\Restforce;
use EventFarm\Restforce\RestforceInterface;
class DemoSalesforceApi
{
/** @var null|RestforceInterface $restforce */
private $restforce;
public function getRestforceClient(): RestforceInterface
{
if ($this->restforce === null) {
// You need either the OAuthAccessToken
// or the Username & Password,
// the other(s) can be null.
$this->restforce = new Restforce(
getenv('SF_CLIENT_ID'),
getenv('SF_CLIENT_SECRET'),
new OAuthAccessToken(...),
getenv('SF_USERNAME'),
getenv('SF_PASSWORD')
);
}
return $this->restforce;
}
}