--
You received this message because you are subscribed to the Google Groups "Etsy API V2" group.
To view this discussion on the web visit https://groups.google.com/d/msg/etsy-api-v2/-/L0dBZqESDhIJ.
To post to this group, send email to etsy-...@googlegroups.com.
To unsubscribe from this group, send email to etsy-api-v2...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/etsy-api-v2?hl=en.
Yepp, you can do this. It does require authentication via oauth like
you suspected. There are a few ways you could go about this, but I
think the easiest would be to go via the Transaction resource:
http://www.etsy.com/developers/documentation/reference/transaction
The transaction has the associated listing.
If you get help constructing the query just holler.
Katrina
Ah, that's not quite how it works. Basically, only your customer needs
to log in, and just once: that way you get the oauth credentials for
the shop, and you can make the requests to the API as that person.
Since you only need to do this for a single person, you don't need to
code up the whole oauth dance in the website, you could just have a
script that does it once.
Once you have the oauth secret and token, then you would build up the
request (it would be the same every time, but you might have to loop
through to grab all the items).
What language are you working in?
> I'm writing in php and using the google code oauth-php library
> ( http://code.google.com/p/oauth-php/ )
> So far I've managed to get a login url and use it to login and get a
> verfication code. Now to figure out what to do with that :-)
Here, try this:
https://gist.github.com/898932
I used a different oauth library, but you've already gotten the oauth
part working, so I bet you know which bits to swap out!
Ah, good to know. I'm updating the github gist with that info.
Thanks!
Katrina