EbaySDK Python GetFeedback (ItemID) only returning 100 values
I am using ebaysdk for python. I am using the Trading API to GetFeedback for items (based on ItemID) with 'DetailsLevel': 'ReturnAll'. I only want to get feedback that was left for the seller, but the returning data majorly contains feedback left for the Buyer and the response is limited to a 100 entries only.
More specifically, it is returning "Feedback Left For Others".
Following is my code:
api2 = Trading(config_file='ebay.yaml')
response2=api2.execute('GetFeedback',{'ItemID':'153221482165', 'Role':'Seller', 'DetailLevel':'ReturnAll'}).dict()
print(response2)
Is there a way to filter my response to "Seller Feedback" only, and for the API to return All data instead of the first 100 entries.
Thanks in advance.
P.S: my python version is 3.7.0
python python-3.x ebay ebay-api
add a comment |
I am using ebaysdk for python. I am using the Trading API to GetFeedback for items (based on ItemID) with 'DetailsLevel': 'ReturnAll'. I only want to get feedback that was left for the seller, but the returning data majorly contains feedback left for the Buyer and the response is limited to a 100 entries only.
More specifically, it is returning "Feedback Left For Others".
Following is my code:
api2 = Trading(config_file='ebay.yaml')
response2=api2.execute('GetFeedback',{'ItemID':'153221482165', 'Role':'Seller', 'DetailLevel':'ReturnAll'}).dict()
print(response2)
Is there a way to filter my response to "Seller Feedback" only, and for the API to return All data instead of the first 100 entries.
Thanks in advance.
P.S: my python version is 3.7.0
python python-3.x ebay ebay-api
Please ignore the 'Role': 'Seller' in the API call. I was just doing trying something, but it was not successful.
– Wasiq Ali
Nov 23 '18 at 0:39
add a comment |
I am using ebaysdk for python. I am using the Trading API to GetFeedback for items (based on ItemID) with 'DetailsLevel': 'ReturnAll'. I only want to get feedback that was left for the seller, but the returning data majorly contains feedback left for the Buyer and the response is limited to a 100 entries only.
More specifically, it is returning "Feedback Left For Others".
Following is my code:
api2 = Trading(config_file='ebay.yaml')
response2=api2.execute('GetFeedback',{'ItemID':'153221482165', 'Role':'Seller', 'DetailLevel':'ReturnAll'}).dict()
print(response2)
Is there a way to filter my response to "Seller Feedback" only, and for the API to return All data instead of the first 100 entries.
Thanks in advance.
P.S: my python version is 3.7.0
python python-3.x ebay ebay-api
I am using ebaysdk for python. I am using the Trading API to GetFeedback for items (based on ItemID) with 'DetailsLevel': 'ReturnAll'. I only want to get feedback that was left for the seller, but the returning data majorly contains feedback left for the Buyer and the response is limited to a 100 entries only.
More specifically, it is returning "Feedback Left For Others".
Following is my code:
api2 = Trading(config_file='ebay.yaml')
response2=api2.execute('GetFeedback',{'ItemID':'153221482165', 'Role':'Seller', 'DetailLevel':'ReturnAll'}).dict()
print(response2)
Is there a way to filter my response to "Seller Feedback" only, and for the API to return All data instead of the first 100 entries.
Thanks in advance.
P.S: my python version is 3.7.0
python python-3.x ebay ebay-api
python python-3.x ebay ebay-api
asked Nov 23 '18 at 0:25
Wasiq AliWasiq Ali
211110
211110
Please ignore the 'Role': 'Seller' in the API call. I was just doing trying something, but it was not successful.
– Wasiq Ali
Nov 23 '18 at 0:39
add a comment |
Please ignore the 'Role': 'Seller' in the API call. I was just doing trying something, but it was not successful.
– Wasiq Ali
Nov 23 '18 at 0:39
Please ignore the 'Role': 'Seller' in the API call. I was just doing trying something, but it was not successful.
– Wasiq Ali
Nov 23 '18 at 0:39
Please ignore the 'Role': 'Seller' in the API call. I was just doing trying something, but it was not successful.
– Wasiq Ali
Nov 23 '18 at 0:39
add a comment |
1 Answer
1
active
oldest
votes
You should read carefully EBAY API GetFeedback documentation
If You only need feedback left for seller, try
FeedbackType.FeedbackReceivedAsSeller
For pagination, it seems that with ItemId You can't get more than 100 results at once:
Unique identifier for an eBay item listing. A listing can have multiple order line items, but only one ItemID. If ItemID is specified in the GetFeedback request, the returned Feedback record(s) are restricted to the specified ItemID. The maximum number of Feedback records that can be returned is 100.
Max length: 19 (Note: ItemIDs are usually 9 to 12 digits).
Cheers
I actually did read the ebaysdk documentation. FeedbackType.FeedbackReceivedAsSeller does not return any data for me at all. Moreover, Pagination does not work with GetFeedback if you search it on the basis of ItemID, according to the ebaysdk documentation.
– Wasiq Ali
Nov 24 '18 at 21:20
You're right, I am trying to push You to read docs carefully but i didn't myself :/ My bad. With ItemId : "The maximum number of Feedback records that can be returned is 100." Otherwise are You sure that feedback for seller is not zero ? I receive correct results ( although we use feedback for all items, thus my pagination "lazy" notice)
– Vancalar
Nov 24 '18 at 21:42
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439360%2febaysdk-python-getfeedback-itemid-only-returning-100-values%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You should read carefully EBAY API GetFeedback documentation
If You only need feedback left for seller, try
FeedbackType.FeedbackReceivedAsSeller
For pagination, it seems that with ItemId You can't get more than 100 results at once:
Unique identifier for an eBay item listing. A listing can have multiple order line items, but only one ItemID. If ItemID is specified in the GetFeedback request, the returned Feedback record(s) are restricted to the specified ItemID. The maximum number of Feedback records that can be returned is 100.
Max length: 19 (Note: ItemIDs are usually 9 to 12 digits).
Cheers
I actually did read the ebaysdk documentation. FeedbackType.FeedbackReceivedAsSeller does not return any data for me at all. Moreover, Pagination does not work with GetFeedback if you search it on the basis of ItemID, according to the ebaysdk documentation.
– Wasiq Ali
Nov 24 '18 at 21:20
You're right, I am trying to push You to read docs carefully but i didn't myself :/ My bad. With ItemId : "The maximum number of Feedback records that can be returned is 100." Otherwise are You sure that feedback for seller is not zero ? I receive correct results ( although we use feedback for all items, thus my pagination "lazy" notice)
– Vancalar
Nov 24 '18 at 21:42
add a comment |
You should read carefully EBAY API GetFeedback documentation
If You only need feedback left for seller, try
FeedbackType.FeedbackReceivedAsSeller
For pagination, it seems that with ItemId You can't get more than 100 results at once:
Unique identifier for an eBay item listing. A listing can have multiple order line items, but only one ItemID. If ItemID is specified in the GetFeedback request, the returned Feedback record(s) are restricted to the specified ItemID. The maximum number of Feedback records that can be returned is 100.
Max length: 19 (Note: ItemIDs are usually 9 to 12 digits).
Cheers
I actually did read the ebaysdk documentation. FeedbackType.FeedbackReceivedAsSeller does not return any data for me at all. Moreover, Pagination does not work with GetFeedback if you search it on the basis of ItemID, according to the ebaysdk documentation.
– Wasiq Ali
Nov 24 '18 at 21:20
You're right, I am trying to push You to read docs carefully but i didn't myself :/ My bad. With ItemId : "The maximum number of Feedback records that can be returned is 100." Otherwise are You sure that feedback for seller is not zero ? I receive correct results ( although we use feedback for all items, thus my pagination "lazy" notice)
– Vancalar
Nov 24 '18 at 21:42
add a comment |
You should read carefully EBAY API GetFeedback documentation
If You only need feedback left for seller, try
FeedbackType.FeedbackReceivedAsSeller
For pagination, it seems that with ItemId You can't get more than 100 results at once:
Unique identifier for an eBay item listing. A listing can have multiple order line items, but only one ItemID. If ItemID is specified in the GetFeedback request, the returned Feedback record(s) are restricted to the specified ItemID. The maximum number of Feedback records that can be returned is 100.
Max length: 19 (Note: ItemIDs are usually 9 to 12 digits).
Cheers
You should read carefully EBAY API GetFeedback documentation
If You only need feedback left for seller, try
FeedbackType.FeedbackReceivedAsSeller
For pagination, it seems that with ItemId You can't get more than 100 results at once:
Unique identifier for an eBay item listing. A listing can have multiple order line items, but only one ItemID. If ItemID is specified in the GetFeedback request, the returned Feedback record(s) are restricted to the specified ItemID. The maximum number of Feedback records that can be returned is 100.
Max length: 19 (Note: ItemIDs are usually 9 to 12 digits).
Cheers
edited Nov 24 '18 at 21:44
answered Nov 23 '18 at 18:33
VancalarVancalar
8831714
8831714
I actually did read the ebaysdk documentation. FeedbackType.FeedbackReceivedAsSeller does not return any data for me at all. Moreover, Pagination does not work with GetFeedback if you search it on the basis of ItemID, according to the ebaysdk documentation.
– Wasiq Ali
Nov 24 '18 at 21:20
You're right, I am trying to push You to read docs carefully but i didn't myself :/ My bad. With ItemId : "The maximum number of Feedback records that can be returned is 100." Otherwise are You sure that feedback for seller is not zero ? I receive correct results ( although we use feedback for all items, thus my pagination "lazy" notice)
– Vancalar
Nov 24 '18 at 21:42
add a comment |
I actually did read the ebaysdk documentation. FeedbackType.FeedbackReceivedAsSeller does not return any data for me at all. Moreover, Pagination does not work with GetFeedback if you search it on the basis of ItemID, according to the ebaysdk documentation.
– Wasiq Ali
Nov 24 '18 at 21:20
You're right, I am trying to push You to read docs carefully but i didn't myself :/ My bad. With ItemId : "The maximum number of Feedback records that can be returned is 100." Otherwise are You sure that feedback for seller is not zero ? I receive correct results ( although we use feedback for all items, thus my pagination "lazy" notice)
– Vancalar
Nov 24 '18 at 21:42
I actually did read the ebaysdk documentation. FeedbackType.FeedbackReceivedAsSeller does not return any data for me at all. Moreover, Pagination does not work with GetFeedback if you search it on the basis of ItemID, according to the ebaysdk documentation.
– Wasiq Ali
Nov 24 '18 at 21:20
I actually did read the ebaysdk documentation. FeedbackType.FeedbackReceivedAsSeller does not return any data for me at all. Moreover, Pagination does not work with GetFeedback if you search it on the basis of ItemID, according to the ebaysdk documentation.
– Wasiq Ali
Nov 24 '18 at 21:20
You're right, I am trying to push You to read docs carefully but i didn't myself :/ My bad. With ItemId : "The maximum number of Feedback records that can be returned is 100." Otherwise are You sure that feedback for seller is not zero ? I receive correct results ( although we use feedback for all items, thus my pagination "lazy" notice)
– Vancalar
Nov 24 '18 at 21:42
You're right, I am trying to push You to read docs carefully but i didn't myself :/ My bad. With ItemId : "The maximum number of Feedback records that can be returned is 100." Otherwise are You sure that feedback for seller is not zero ? I receive correct results ( although we use feedback for all items, thus my pagination "lazy" notice)
– Vancalar
Nov 24 '18 at 21:42
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53439360%2febaysdk-python-getfeedback-itemid-only-returning-100-values%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Please ignore the 'Role': 'Seller' in the API call. I was just doing trying something, but it was not successful.
– Wasiq Ali
Nov 23 '18 at 0:39