EV Orders Connector
Connettore WooCommers per leggere ordini da Extravirgin
by NextFuture · github.com/nextfuture-it/evordersconnector · website
★ 0stars
4release downloads
0forks
Install
The author publishes release zips, so WP-CLI can install straight from GitHub:
wp plugin install https://github.com/nextfuture-it/evordersconnector/releases/download/v1.3.1/evorders.zipDeclares an update source (https://github.com/Nextfuture-IT/EVOrdersConnector), so updates arrive through the plugin's own updater.
From the readme
EV Orders Connector (plugin WooCommerce)
Plugin WooCommerce che espone gli ordini in sola lettura via REST API, in forma
normalizzata (DTO con chiavi italiane), autenticata con API key in header.
Gira dentro lo store: legge gli ordini nativamente (wcgetorders()), nessuna
consumer key/secret, nessun registry esterno.
Installazione
1. Comprimi la cartella del plugin in evorders.zip (vedi sotto) oppure copiala in
wp-content/plugins/evorders/.
2. WordPress → Plugin → attiva EV Orders Connector (richiede WooCommerce attivo).
All'attivazione viene generata automaticamente un'API key casuale.
3. Recupera/gestisci l'API key in WooCommerce → EV Orders API (mostrata lì, con
pulsante "Rigenera"). In alternativa, per tenerla fuori dal DB, definiscila in
wp-config.php (ha precedenza): define( 'EVORDERSAPIKEY', '' );
Pacchetto installabile:
Endpoint
Namespace evorders/v1. Tutte le rotte ordini richiedono l'header X-Api-Key.
| Metodo | Path | Auth | Descrizione |
|---|---|---|---|
| GET | /wp-json/evorders/v1/health | no | Health check |
| GET | /wp-json/evorders/v1/orders | sì | Lista ordini (filtri + paginazione) |
| GET | /wp-json/evorders/v1/orders/{id} | sì | Dettaglio ord
Read the full README on GitHub →