You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Staring in WooCommerce 2.4 we introduced our Authentication Endpoint, where any app can easy allow users to generate API keys and send back automatically to the app.
4
-
5
-
This makes integration with WooCommerce API much simpler, since the user only needs to access a URL, click in the "accept" button and will be redirected back to the app and the API keys are sent back in a POST request.
3
+
Starting in WooCommerce 2.4 we introduced an Authentication Endpoint, This can be used by any app to allow users to generate API keys. This makes integration with WooCommerce API simpler because the user only needs to access a URL and click "accept". After being redirected back to the app, the API keys will be sent in a POST request.
Note that this endpoint works exclusively for users to generate API keys and facilitate integration between the WooCommerce REST API and an application. In no way is this endpoint proposes to be used as login method for customers.
10
+
Note that this endpoint works exclusively for users to generate API keys and facilitate integration between the WooCommerce REST API and an application. In no way is this endpoint proposed to be used as login method for customers.
|`app_name`| string | Your app name <iclass="label label-info">mandatory</i> |
20
18
|`scope`| string | Level of access. Available: `read`, `write` and `read_write` <iclass="label label-info">mandatory</i> |
21
19
|`user_id`| string | User ID in your app. For your internal reference, used when the user is redirected back to your app. NOT THE USER ID IN WOOCOMMERCE <iclass="label label-info">mandatory</i> |
22
-
|`return_url`| string | URL that will be used for receive the user back in your app <iclass="label label-info">mandatory</i> |
23
-
|`callback_url`| string | URL that will receive the generated API key. Important to note that this URL should be over **SSL** <iclass="label label-info">mandatory</i> |
20
+
|`return_url`| string | URL the user will be redirected to after authentication <iclass="label label-info">mandatory</i> |
21
+
|`callback_url`| string | URL that will receive the generated API key. Note: this URL should be over **HTTPS** <iclass="label label-info">mandatory</i> |
24
22
25
23
## Creating Authentication Endpoint URL ##
26
24
27
-
You must use the `/wc-auth/v1/authorize` endpoint and pass the above parameters as query string.
25
+
You must use the `/wc-auth/v1/authorize` endpoint and pass the above parameters as a query string.
- While redirecting the user using `return_url` are also sent `success` and `user_id` parameters as query strings.
63
-
-`success` sends `0` if the user denied or `1` if authenticated successfully.
64
-
- Use `user_id` to identify the user when redirected back (`return_url`) to your app and also to save the API Keys in your `callback_url`.
65
-
-This will send the API Keys in JSON format to the `callback_url`, so it's important to remember that some languages such as PHP will not display it inside the `$_POST` global variable, in PHP you can access it using `$HTTP_RAW_POST_DATA` (for old PHP versions) or `file_get_contents('php://input');`.
126
+
- While redirecting the user using `return_url`, you are also sent `success` and `user_id` parameters as query strings.
127
+
-`success` sends `0` if the user denied, or `1` if authenticated successfully.
128
+
- Use `user_id` to identify the user when redirected back to the (`return_url`) and also remember to save the API Keys when your `callback_url` is posted to after auth.
129
+
-The auth endpoint will send the API Keys in JSON format to the `callback_url`, so it's important to remember that some languages such as PHP will not display it inside the `$_POST` global variable, in PHP you can access it using `$HTTP_RAW_POST_DATA` (for old PHP versions) or `file_get_contents('php://input');`.
66
130
- This authentication endpoint is used only to make easy integration with WooCommerce REST API. THIS NOT INTENDED TO BE USED AS A LOGIN ENDPOINT FOR CUSTOMERS!
0 commit comments