Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Why transaction_sold_count is private in V2?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  16 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
HAN  
View profile  
 More options Sep 24 2010, 2:44 am
From: HAN <pyephyo...@gmail.com>
Date: Thu, 23 Sep 2010 23:44:21 -0700 (PDT)
Local: Fri, Sep 24 2010 2:44 am
Subject: Why transaction_sold_count is private in V2?
Hi All,

I have confused in V2 API for "transaction_sold_count" field because I
cannot retrieve that one by using new V2 API and it is saying as
private. Actually, my existing code, V1 can access that variable from
ETSY. So, may I know how can i access that field?

Thanks,
HAN


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Error with SandboxSync" by Michael Krotscheck
Michael Krotscheck  
View profile  
 More options Sep 24 2010, 3:09 am
From: Michael Krotscheck <krotsch...@gmail.com>
Date: Fri, 24 Sep 2010 00:09:10 -0700
Local: Fri, Sep 24 2010 3:09 am
Subject: Error with SandboxSync

Hi guys-

Every time I try to synchronize my account from prod to the sandbox, I get a variety of lovely error pages. Sadly, it appears that the error is thrown before anything gets migrated over, because subsequent calls to /users/__SELF__ nets me this lovely error:

User with PK user_id = [myuserid] does not exist

I don't suppose anyone else has run into this, and/or has an idea of how to get around it? Everything else seems to be working well enough.

Michael Krotscheck


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Aaron Gardner  
View profile  
 More options Sep 24 2010, 10:31 am
From: Aaron Gardner <agard...@etsy.com>
Date: Fri, 24 Sep 2010 10:31:24 -0400
Local: Fri, Sep 24 2010 10:31 am
Subject: Re: Error with SandboxSync
Michael,

Thank you for reporting this issue. We are looking into it.

Best regards,

Aaron Gardner
Developer API Team
Etsy.com

On Fri, Sep 24, 2010 at 3:09 AM, Michael Krotscheck


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Why transaction_sold_count is private in V2?" by James Lee
James Lee  
View profile   Translate to Translated (View Original)
 More options Sep 24 2010, 12:42 pm
From: James Lee <j...@etsy.com>
Date: Fri, 24 Sep 2010 12:42:21 -0400
Local: Fri, Sep 24 2010 12:42 pm
Subject: Re: Why transaction_sold_count is private in V2?

Han,

What calls are you making?

James Lee
Developer API Team
Etsy.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Error with SandboxSync" by Aaron Gardner
Aaron Gardner  
View profile  
 More options Sep 24 2010, 12:58 pm
From: Aaron Gardner <agard...@etsy.com>
Date: Fri, 24 Sep 2010 12:58:28 -0400
Local: Fri, Sep 24 2010 12:58 pm
Subject: Re: Error with SandboxSync
Michael,

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


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Michael Krotscheck  
View profile  
 More options Sep 24 2010, 1:03 pm
From: Michael Krotscheck <krotsch...@gmail.com>
Date: Fri, 24 Sep 2010 10:03:41 -0700
Local: Fri, Sep 24 2010 1:03 pm
Subject: Re: Error with SandboxSync
NICE!
Thanks for the quick turnaround, guys, it worked like a charm.

Michael
Now to get back to work :)

On Sep 24, 2010, at 9:58 AM, Aaron Gardner wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Why transaction_sold_count is private in V2?" by HAN
HAN  
View profile  
 More options Sep 27 2010, 4:10 am
From: HAN <pyephyo...@gmail.com>
Date: Mon, 27 Sep 2010 01:10:04 -0700 (PDT)
Local: Mon, Sep 27 2010 4:10 am
Subject: Re: Why transaction_sold_count is private in V2?
Hi James Lee,

We doing like this:

$usrid = "xxxxxx";
                $url = "http://openapi.etsy.com/v2/sandbox/public/users/$usrid?
api_key=api_key";

                $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)
                {
                 // throw new Exception("HTTP $status\n$response_body");
                   //  echo "<p>I can't get it</p>";
                        die("ErrorU: $response_body");

                }else{
                        $response = json_decode($response_body);
                        $user = $response->results[0];
                        print_r($user->transaction_sold_count);
                        //$result[] = $user->user_id . "," . $user->user_name .",". $user-

>url .",". $user->transaction_sold_count .",". $user->join_epoch;

                        //echo $z; echo "<br>";
                }
We cannot get the user's transaction sold count. Error is "403
Developer Inactive". Please help me for this.

Regards,
HAN

On Sep 25, 12:42 am, James Lee <j...@etsy.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
HAN  
View profile  
 More options Sep 29 2010, 11:34 pm
From: HAN <pyephyo...@gmail.com>
Date: Wed, 29 Sep 2010 20:34:30 -0700 (PDT)
Local: Wed, Sep 29 2010 11:34 pm
Subject: Re: Why transaction_sold_count is private in V2?
HI All,

Hi James Lee,

We doing like this:

$usrid = "xxxxxx";
                $url = "http://openapi.etsy.com/v2/sandbox/public/
users/$usrid?
api_key=api_key";

                $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)
                {
                 // throw new Exception("HTTP $status\n
$response_body");
                   //  echo "<p>I can't get it</p>";
                        die("ErrorU: $response_body");

                }else{
                        $response = json_decode($response_body);
                        $user = $response->results[0];
                        print_r($user->transaction_sold_count);
                        //$result[] = $user->user_id . "," . $user-

>user_name .",". $user-
>url .",". $user->transaction_sold_count .",". $user->join_epoch;

                        //echo $z; echo "<br>";
                }
We cannot get the user's transaction sold count. Error is "403
Developer Inactive". Please help me for this.

Regards,
HAN

On Sep 27, 4:10 pm, HAN <pyephyo...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
James Lee  
View profile  
 More options Sep 30 2010, 12:22 am
From: James Lee <j...@etsy.com>
Date: Thu, 30 Sep 2010 00:22:02 -0400
Local: Thurs, Sep 30 2010 12:22 am
Subject: Re: Why transaction_sold_count is private in V2?

Han,

A 403 Developer Inactive error indicates you aren't using the right key.
 Make sure you're using the V2 sandbox key and try again.  Thanks.

James Lee
Developer API Team
Etsy.com


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sami nathan  
View profile  
 More options Oct 1 2010, 4:03 am
From: Sami nathan <sami...@gmail.com>
Date: Fri, 1 Oct 2010 16:03:53 +0800
Local: Fri, Oct 1 2010 4:03 am
Subject: Why transaction_sold_count is private in V2?

Hi James,

          I  already used the V2 sandbox api key. But still we can not
retrive the transacion sold count value. My code  is as follow

  $url =
http://openapi.etsy.com/v2/sandbox/public/users/$usrid?api_key=$apikey;
  $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->transaction_sold_count);
  }

Please help me .
Thanks and Regards

Sami


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Justin Kerr Sheckler  
View profile  
 More options Oct 1 2010, 10:13 am
From: Justin Kerr Sheckler <jus...@etsy.com>
Date: Fri, 1 Oct 2010 10:13:18 -0400
Local: Fri, Oct 1 2010 10:13 am
Subject: Re: Why transaction_sold_count is private in V2?
Hi Sami,

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=$apik...";
  $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

--
Justin Kerr Sheckler
Developer API Lead
Etsy.com
jus...@etsy.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Sami nathan  
View profile  
 More options Oct 3 2010, 9:59 pm
From: Sami nathan <sami...@gmail.com>
Date: Mon, 4 Oct 2010 09:59:04 +0800
Local: Sun, Oct 3 2010 9:59 pm
Subject: Re: Why transaction_sold_count is private in V2?

Hi Justin Kerr Sheckler

     Thank you very much. It's working fine.

Regards,
 Sami

On Fri, Oct 1, 2010 at 10:13 PM, Justin Kerr Sheckler <jus...@etsy.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
m.bide...@yahoo.com  
View profile  
 More options Oct 3 2010, 10:38 pm
From: m.bide...@yahoo.com
Date: Mon, 4 Oct 2010 02:38:35 +0000
Local: Sun, Oct 3 2010 10:38 pm
Subject: Re: Why transaction_sold_count is private in V2?

Please stop sending me emails. I don't know who eysy is @ I have tried unsubscribing @ it won't go away. Thank you. I am an independent senior consultant with my own home based business.
Sent on the Sprint® Now Network from my BlackBerry®


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Luke Chadwick  
View profile  
 More options Oct 3 2010, 10:59 pm
From: Luke Chadwick <luke.a.chadw...@gmail.com>
Date: Mon, 4 Oct 2010 13:59:23 +1100
Local: Sun, Oct 3 2010 10:59 pm
Subject: Re: Why transaction_sold_count is private in V2?

Hi M,
   That's very strange, the only thing I can think of is that a previous
owner of that email address may have signed up for the group! Regardless,
you can send an email to etsy-api-v2+unsubscribe@googlegroups.com and you
WILL be unsubscribed. Let me know if this doesn't work.

Regards,

Luke

On 4 October 2010 13:38, <m.bide...@yahoo.com> wrote:

--
email: luke.a.chadw...@gmail.com
phone: +61402203606
twitter: @vertis

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Discussion subject changed to "Generating Dev Data" by Michael Krotscheck
Michael Krotscheck  
View profile  
 More options Nov 1 2010, 5:16 pm
From: Michael Krotscheck <krotsch...@gmail.com>
Date: Mon, 1 Nov 2010 14:16:09 -0700
Local: Mon, Nov 1 2010 5:16 pm
Subject: Generating Dev Data

I'm looking for a good way to populate my developer account with usable data that I can test with- in particular a full battery of sales, products transactions, feedback and the like - without having to operate my own store. From my conversation with Justin on this topic I realize that it's probably not feasible to have them populate something "by default" for devs, especially since I've seen how quickly they iterate and change things. Furthermore, I don't actually have a whole lot of friends who sell on Etsy- only buyers - so I can't ask one of them to generate a sandbox OAuth key for me so I can query against their shop.

A this point I've pretty much exhausted what is possible with Mock data, so I'm wondering if anyone out there has found a good way of generating data on the dev sandbox itself?

Michael Krotscheck


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Eric  
View profile  
 More options Nov 1 2010, 5:25 pm
From: Eric <ethom...@gmail.com>
Date: Mon, 1 Nov 2010 14:25:18 -0700
Local: Mon, Nov 1 2010 5:25 pm
Subject: Re: Generating Dev Data
I'd be very interested in this too.

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

On Nov 1, 2010, at 2:16 PM, Michael Krotscheck wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »