cancel
Showing results for 
Search instead for 
Did you mean: 

API REST con MAGENTO 1.8.2

API REST con MAGENTO 1.8.2

Buonasera a tutti,

sono nuovo di Magento, quindi mi scuserete se farò domande stupide.

Devo creare un'applicazione desktop che tramite API REST deve scaricare gli ordiniche arrivano sul sito.

Seguendo la documentazione messa a disposizione da Magento, da panel control -> system -> Web Services -> REST-Rules e REST-Attributes ho concesso tutti i permessi (All).

Nella voce REST - oauth consumenrs ho creato l'utente che dovrà accedere tramite api ottenedo la key e la secret key. Da browser se digito "http://eumakers.com/api/rest/products?limit=2" mi si apre il sito, invece di aprirmi l'xml con l'elenco dei prodotti.

Inoltre se tento l'accesso dall'applicazione desktop che ho scritto non mi autentica, tant'è che nel panel control noto che non mi è stato rilasciato nessun token.

Che passaggio ho saltato?

 

Grazie

 

Saluti

Nicola

1 REPLY 1

Re: API REST con MAGENTO 1.8.2

It's unlikely you'll be able to access the REST API through the browser as you need to go through the oauth authorization process. 

 

The official docs, particularly on the authorization process are available here: http://devdocs.magento.com/guides/m1x/api/rest/authentication/oauth_authentication.html

 

In addition, I found the following blog post a fantastic guide of getting started with REST and how to get the oauth token to pass to each request:

 

http://www.aschroder.com/2012/04/introduction-to-the-magento-rest-apis-with-oauth-in-version-1-7/

----
If you've found one of my answers useful, please give "Kudos" or "Accept as Solution" as appropriate. Thanks!