PHP code example of venveo / hubspot-toolbox
1. Go to this page and download the library: Download venveo/hubspot-toolbox 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/ */
venveo / hubspot-toolbox example snippets
return [
'hubspotPortalId' => getenv('HUBSPOT_PORTAL_ID'),
'defaultApp' => 'some_unique_id',
'apps' => [
'some_unique_id' => [
'appName' => 'a name for my app',
'appId' => 000000,
'clientId' => 'probably_put_this_in_your_env',
'clientSecret' => 'probably_put_this_in_your_env',
// Update me
'scopes' => ['timeline', 'contacts', 'forms']
]
]
];