我有这个错误:
服务器错误。 500.网站在检索本地主机时遇到错误:8888 / mars / examples / retrieve.php。它可能已关闭以进行维护或配置不正确。
我当前的Retrieve.php文件,编辑身份验证密钥和用户名:
#!/usr/bin/env php
<?php
// Configuration:
$apiKey = 'AUTH KEY';
$username = 'AUTH USERNAME';
// End of configuration
require_once('../NutshellApi.php');
$api = new NutshellApi($username, $apiKey);
$params = array(
'findLeads' => array('Status' =>0),
);
$result = $api->findLeads ($params);
var_dump($result);
echo "\n";