Activecollab自托管帐户API身份验证无效响应

时间:2019-02-26 04:47:24

标签: php api authentication activecollab

我正在使用此API集成https://github.com/activecollab/activecollab-feather-sdk

我使用以下代码获取令牌:

$authenticator = new \ActiveCollab\SDK\Authenticator\SelfHosted('<COMPANY NAME>', 'My Application', '<EMAIL>', '<PASSWORD>', 'http://criticalproject.com.mx/projects');
        $token = $authenticator->issueToken();
        // Did we get what we asked for?
        if ($token instanceof \ActiveCollab\SDK\TokenInterface) {
            print $token->getUrl() . "\n";
            print $token->getToken() . "\n";
        } else {
            print "Invalid response\n";
            die();
        }

但是我得到了

  

“无效响应”。

请检查附件中的错误屏幕截图并建议我

下面是屏幕截图。

enter image description here

注意:我使用了虚拟公司名称,应用程序名称。但是电子邮件和密码是正确的。那会是个问题吗? 如果可以的话,我该如何获取公司名称和应用名称

0 个答案:

没有答案