每个 Infusionsoft 帐户都有一个 API 密钥,允许您调用 API。
以下是获取 Infusionsoft 应用程序的 API 密钥的说明。
http://ug.infusionsoft.com/article/AA-00442/0/Infusionsoft-API-Key.html
获得密钥后,您可以使用 PHP SKD 拨打电话和添加联系人。这是 infusionosft php SDK 的链接:
https ://github.com/infusionsoft/infusionsoft-php
这是添加联系人的文档链接以及 php 示例:
https ://developer.infusionsoft.com/docs/xml-rpc/#contact
https://github.com/infusionsoft/API-Sample-Code/blob/master/PHP/ContactService-Sample.php
编辑
看起来他们最终会在未来取消帐户级密钥,这不需要您使用 oauth。
https://developer.infusionsoft.com/2014/07/03/simplifying-infusionsoft-authentication-with-oauth2/
这里有很多关于如何在 Infusionsoft 中使用 oauth 的示例:
https ://developer.infusionsoft.com/docs/xml-rpc/#contact
单击右侧的 PHP,您将看到如何获取令牌并使用 API 创建联系人
github 中的 README 中还有更多示例:
https://github.com/infusionsoft/infusionsoft-php/blob/master/README.md
验证:
$infusionsoft = new \Infusionsoft\Infusionsoft(array(
'clientId' => 'XXXXXXXXXXXXXXXXXXXXXXXX',
'clientSecret' => 'XXXXXXXXXX',
'redirectUri' => 'http://example.com/',
));
// If the serialized token is available in the session storage, we tell the SDK
// to use that token for subsequent requests.
if (isset($_SESSION['token'])) {
$infusionsoft->setToken(unserialize($_SESSION['token']));
}
// If we are returning from Infusionsoft we need to exchange the code for an
// access token.
if (isset($_GET['code']) and !$infusionsoft->getToken()) {
$infusionsoft->requestAccessToken($_GET['code']);
}
if ($infusionsoft->getToken()) {
// Save the serialized token to the current session for subsequent requests
$_SESSION['token'] = serialize($infusionsoft->getToken());
// MAKE INFUSIONSOFT REQUEST
} else {
echo '<a href="' . $infusionsoft->getAuthorizationUrl() . '">Click here to authorize</a>';
}