2017-02-28 120 views
0

我通过本地IIS服务器上的git克隆了QuickBooks PHP DevKit无法在IIS上运行QuickBooks Online PHP DevKit

和更新\docs\partner_platform\example_app_ipp_v3\config.php文件少的变量每这里提到的步骤:QuickBooks ONLINE Quick Start

$token = '505851e5b393db43d5b8fd6b5c67cc3584c0'; 

$oauth_consumer_key = 'qyprdc1Q7grOuaQzN8Y3fxq6RxRfsI'; 
$oauth_consumer_secret = 'o4JTZVLndeBpp5iqFNj19ysJf0NW0t9QCAh6iIJ6'; 

$quickbooks_oauth_url = 'http://localhost/quickbooks-php/docs/partner_platform/example_app_ipp_v3/oauth.php'; 

$quickbooks_success_url = 'http://localhost/quickbooks-php/docs/partner_platform/example_app_ipp_v3/success.php'; 

$quickbooks_menu_url = 'http://localhost/quickbooks-php/docs/partner_platform/example_app_ipp_v3/menu.php'; 

$dsn = 'mysqli://root:[email protected]:3306/test'; // same connection works for another application 

此示例工程Apache服务器上的Mac。但它给在Windows此错误:http://prnt.sc/eccdc3

这也给了我尝试运行Apache的(Mac)来IIS(Windows)中的工作代码,在这个堆栈溢出问题的问题#3提到了一些奇怪的错误:Unable to add TaxRate, get multiple ShipAddr from/to QuickBooks Online using QuickBooks PHP DevKit

+0

发表您的码。在Intuit的开发人员控制面板中发布按键/配置的屏幕截图。没有这些细节,我们无法帮助你。 –

+0

完整的代码就像从QuickBooks PHP DevKit的Github下载,除了'.. \ example_app_ipp_v3 \ config.php'文件。我已经用上面的值改变了config.php变量。我从Intuit开发人员门户网站获得了这个:https://ibb.co/f6tgov如果我在Apache服务器上托管Devkit示例,这个相同的密钥可以工作。 我应该上传修改过的config.php文件吗?谢谢@KeithPalmerJr。 –

+0

在Intuit的开发人员控制面板中发布按键/配置的屏幕截图。 –

回答

1

您的cURL PHP扩展似乎配置错​​误。如果您发现,当您尝试使用卷曲TLS/SSL的网站访问,你会得到这样的东西:

Trying to hit URL: https://oauth.intuit.com/oauth/v1/get_request_token 

    Did we disable SSL checks? false 
* Hostname oauth.intuit.com was found in DNS cache 
* Trying 173.240.170.25... 
* TCP_NODELAY set 
* Connected to oauth.intuit.com (173.240.170.25) port 443 (#0) 
* ALPN, offering http/1.1 
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH 
* SSL certificate problem: self signed certificate in certificate chain 
* Curl_http_done: called premature == 1 
* Closing connection 0 

通知连接被越来越立即关闭,任何实际数据交换之前。

与此相比,结果当TLS/SSL验证被明确禁用:

Trying to hit URL: https://oauth.intuit.com/oauth/v1/get_request_token 

    Did we disable SSL checks? true 
* Hostname oauth.intuit.com was found in DNS cache 
* Trying 173.240.170.25... 
* TCP_NODELAY set 
* Connected to oauth.intuit.com (173.240.170.25) port 443 (#0) 
* ALPN, offering http/1.1 
* Cipher selection: ALL:!EXPORT:!EXPORT40:!EXPORT56:!aNULL:!LOW:!RC4:@STRENGTH 
* SSL connection using TLSv1.2/AES128-GCM-SHA256 
* ALPN, server accepted to use http/1.1 
* Server certificate: 
* subject: C=US; ST=California; L=San Diego; O=INTUIT INC.; OU=CTO-DEV-ICS-OAuth1; CN=oauth.intuit.net 
* start date: Sep 9 00:00:00 2016 GMT 
* expire date: Sep 10 23:59:59 2019 GMT 
* issuer: C=US; O=Symantec Corporation; OU=Symantec Trust Network; CN=Symantec Class 3 Secure Server CA - G4 
* SSL certificate verify result: self signed certificate in certificate chain (19), continuing anyway. 
> GET /oauth/v1/get_request_token HTTP/1.1 
Host: oauth.intuit.com 
Accept: */* 

< HTTP/1.1 400 Bad Request 
< Content-Type: text/plain 
< Content-Length: 70 
< Connection: keep-alive 
< Date: Tue, 28 Mar 2017 02:34:14 GMT 
< Server: Apache 
< WWW-Authenticate: OAuth oauth_parameters_absent="oauth_signature", oauth_problem="parameter_absent" 
< Cache-Control: no-cache, no-store 
< Pragma: no-cache 
< 
* Curl_http_done: called premature == 0 
* Connection #0 to host oauth.intuit.com left intact 


oauth_problem=parameter_absent&oauth_parameters_absent=oauth_signature 

注意,现在它工作。

这告诉我这里可能存在的问题是您的cURL PHP扩展程序不知道如何进行TLS请求。这是cURL和PHP的一个常见问题。

如果你搜索谷歌或StackOverflow的这样的事情:

“PHP卷曲不使用HTTPS工作”你会发现很多的答案,说明如何处理这个的,沿有关此信任存储中科院官方卷曲声明:

也请看看,并确认该PHP卷曲配置变量的正确配置:

  • curl.cainfo

参考这样的:

+0

感谢Keith。你的建议是准确的。此链接帮助我解决了这个问题:https://github.com/ably/ably-php/issues/32 –