So Infusionsoft has changed the PHP SDK and now I am lost. Before I would just get an API key and my Application name to conn.cfg.php
like so:
$connInfo = array(‘connectionName:applicationName:i:APIKEYGOESHERE:This is
the connection for applicationName.infusionsoft.com’);
?>
Now its oAuth and has this to connect:
$infusionsoft = new Infusionsoft\Infusionsoft(array(
'clientId' => 'XXXXXXXXXXXXXXXXXXXXXXXX',
'clientSecret' => 'XXXXXXXXXX',
'redirectUri' => 'http://example.com/',
));
What I am confused about is integration. I want to just access clients stuff through my crm api key like before. They are already logged into my custom web app, getting their info is just billing stuff. I dont want them to sign in to my application, then have to sign into infusion soft to get a token. Am I missing something here?