Thank you for reporting this issue. We are looking into it.
Best regards,
Aaron Gardner
Developer API Team
Etsy.com
> --
> You received this message because you are subscribed to the Google Groups
> "Etsy API V2" group.
> 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.
>
We just deployed a fix for the Sandbox Sync page.
- http://www.etsy.com/your/applications/sandboxsync
You should now be able to sync your account and then access it via
sandbox API calls:
Thanks again for reporting this issue.
Best regards,
Aaron Gardner
Developer API Team
Etsy.com
Michael
Now to get back to work :)
To unsubscribe from this group, send email to etsy-api-v2...@googlegroups.com.
The transaction_sold_count field is part of UserProfile, not User. To
include the profile data with a user request, append
"includes=Profile" to your query string. Here's an example:
<?php
$userid = "etsystore";
$apikey = "seekrit";
$url = "http://openapi.etsy.com/v2/sandbox/public/users/$userid?api_key=$apikey&includes=Profile";
$ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response_body = curl_exec($ch);
$status = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if (intval($status) != 200)
{
die("ErrorU: $response_body");
}else{
$response = json_decode($response_body);
$user = $response->results[0];
print_r($user);
print_r($user->Profile->transaction_sold_count);
}
And here's the docs on UserProfile:
http://developer.etsy.com/docs/resources#userprofile
JKS
> --
> You received this message because you are subscribed to the Google Groups
> "Etsy API V2" group.
> 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.
>
--
Justin Kerr Sheckler
Developer API Lead
Etsy.com
jus...@etsy.com
Sent on the Sprint® Now Network from my BlackBerry®
For now, I've just been using my own account (where I'm only a buyer), my wife's account (who is also a seller), and anything else that's public (like some peoples' favorites lists).
Still doesn't let a developer test for the other aspects of the API though.
We're actually underway in building a Ruby middleware piece that can simulate/generate API calls in batch-type modes, along with unit and integration tests that will confirm the Etsy API is sending back what we expect it to send back. We literally just started it this week, but once it's a bit more polished (at least enough to release), we'll post it on Github for anyone who wants it as well. Seems like a lot of us have this problem.
Thanks!
Eric @ Checklet