@@ -56,23 +56,25 @@ Setup for the new WP REST API integration (WooCommerce 2.6 or later):
56
56
Options
57
57
~~~~~~~
58
58
59
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
60
- | Option | Type | Required | Description |
61
- +====================+=============+==========+=======================================================================================================+
62
- | ``url `` | ``string `` | yes | Your Store URL, example: http://woo.dev/ |
63
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
64
- | ``consumerKey `` | ``string `` | yes | Your API consumer key |
65
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
66
- | ``consumerSecret `` | ``string `` | yes | Your API consumer secret |
67
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
68
- | ``wp_api `` | ``bool `` | no | Allow requests to the WP REST API (WooCommerce 2.6 or later) |
69
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
70
- | ``version `` | ``string `` | no | API version, default is ``v3 `` |
71
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
72
- | ``timeout `` | ``integer `` | no | Connection timeout, default is ``5 `` |
73
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
74
- | ``verify_ssl `` | ``bool `` | no | Verify SSL when connect, use this option as ``False `` when need to test with self-signed certificates |
75
- +--------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
59
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
60
+ | Option | Type | Required | Description |
61
+ +=======================+=============+==========+=======================================================================================================+
62
+ | ``url `` | ``string `` | yes | Your Store URL, example: http://woo.dev/ |
63
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
64
+ | ``consumerKey `` | ``string `` | yes | Your API consumer key |
65
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
66
+ | ``consumerSecret `` | ``string `` | yes | Your API consumer secret |
67
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
68
+ | ``wp_api `` | ``bool `` | no | Allow requests to the WP REST API (WooCommerce 2.6 or later) |
69
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
70
+ | ``version `` | ``string `` | no | API version, default is ``v3 `` |
71
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
72
+ | ``timeout `` | ``integer `` | no | Connection timeout, default is ``5 `` |
73
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
74
+ | ``verify_ssl `` | ``bool `` | no | Verify SSL when connect, use this option as ``False `` when need to test with self-signed certificates |
75
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
76
+ | ``query_string_auth `` | ``bool `` | no | Force Basic Authentication as query string when ``True `` and using under HTTPS, default is ``False `` |
77
+ +-----------------------+-------------+----------+-------------------------------------------------------------------------------------------------------+
76
78
77
79
Methods
78
80
-------
@@ -135,6 +137,11 @@ Example of returned data:
135
137
Changelog
136
138
---------
137
139
140
+ 1.2.0 - 2016/06/22
141
+ ~ ~~~~~~~~~~~~~~~~~
142
+
143
+ - Added option ` ` query_string_auth` ` to allow Basic Auth as query strings.
144
+
138
145
1.1.1 - 2016/06/03
139
146
~ ~~~~~~~~~~~~~~~~~
140
147
0 commit comments