我已经通过本地IIS服务器上的git克隆了QuickBooks 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:sa123@192.168.1.3:3306/test'; // same connection works for another application
此示例适用于Mac上的Apache Server。但它在Windows上出现此错误:http://prnt.sc/eccdc3
当我尝试运行从Apache(Mac)到IIS(Windows)的工作代码时,它也会出现一些奇怪的错误,该问题在此Stack Overflow问题的问题#3中提到:Unable to add TaxRate, get multiple ShipAddr from/to QuickBooks Online using QuickBooks PHP DevKit
答案 0 :(得分:1)
您的cURL PHP扩展程序似乎配置错误。如果您注意到,当您尝试使用cURL访问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的一个常见问题。
如果您搜索Google或StackOverflow,请执行以下操作:
您将找到许多解释如何处理此问题的答案,以及有关信任存储和CA的官方cURL声明:
请同时查看并确认此PHP cURL配置变量的正确配置:
curl.cainfo
参考: