infusionsoft / infusionsoft-php

PHP client library for the Infusionsoft API.
https://developer.infusionsoft.com/
Other
129 stars 126 forks source link

How do I find my clientid and clientSecret? #280

Closed markarupert closed 3 years ago

markarupert commented 3 years ago

How do I find my clientid and clientSecret for this below? Is it my appid and the encrypted key?

$infusionsoft = new \Infusionsoft\Infusionsoft(array(
'clientId'     => 'XXXXXXXXXXXXXXXXXXXXXXXX',
'clientSecret' => 'XXXXXXXXXX',
'redirectUri'  => 'http://example.com/',
));
bbooth commented 3 years ago

Please reach out to https://community.infusionsoft.com under the API topic. That is our main place for support. Long story short though is you need to register as a developer at https://developer.infusionsoft.com to get your OAuth client credentials. The site also has lots of docs what you need to do.

markarupert commented 3 years ago

Thanks