尝试使用consolibyte / quickbooks-php

时间:2019-06-28 18:39:46

标签: php quickbooks

我已经克隆了存储库,使用IIS和NGrok设置了Web服务器,并使用Intuit应用程序中的密钥更新了配置文件。我在重定向URI中添加了三个链接。索引页可以很好地加载,但是当我单击“连接到快速簿”按钮时,出现一条错误消息,告诉我“无法建立授权URL。哦,不,发生了什么坏事::”。

我感觉好像缺少了一些琐碎的东西,因为似乎所有东西都会像加载它一样运行,直到它尝试调用oauth.php为止,并且它不要求我登录quickbooks以完成此步骤。它尝试加载oauth.php,但无法连接到$ the_tenant。

// For OAuth2 (all new application, and what you should be migrating to)
require_once dirname(__FILE__) . '/config_oauthv2.php';

// For old/legacy applications
//require_once dirname(__FILE__) . '/config_oauthv1.php';

// Try to handle the OAuth request
if ($IntuitAnywhere->handle($the_tenant))
{
    ; // The user has been connected, and will be redirected to $that_url 
automatically.
}
else
{
// If this happens, something went wrong with the OAuth handshake
die('Oh no, something bad happened: ' . $IntuitAnywhere->errorNumber()    
    $IntuitAnywhere->errorMessage());
}

我原本希望能够登录快速手册并开始进行一些示例查询,但在此之前我一直处于困境。

0 个答案:

没有答案