Auto-refresh auth token not working
Closed this issue · 6 comments
- [x ] Are you running the latest version?
- Have you included sample input, output, error, and expected output?
- Have you checked if you are using correct configuration?
Describe the bug
This one is pretty simple. I'm calling an eBay API (GetOrders) with a token that has expired and, rather than auto-refreshing the token, it's passing along the "Auth token is invalid" error and failing the call.
I don't know the internals of this library well enough to be sure, but I might guess that the wording is different from what the library is expecting and simply needs to check for the string "Auth token is invalid" ??
Thank you so much for all the hard work. This library is incredibly useful.
Code
const eBay = eBayApi.fromEnv();
eBay.OAuth2.setCredentials(token);
eBay.OAuth2.on("refreshAuthToken", (newtoken) => {
// this is not firing
debug("Refresh auth token");
TokenManager.saveToken(newtoken);
});
// manual refresh does work (refresh token is good)
//await eBay.OAuth2.refreshToken();
const raw = await eBay.trading.GetOrders({
NumberOfDays: 2,
OrderRole: "Seller",
OrderStatus: "Completed",
Pagination: {
EntriesPerPage: 10,
PageNumber: 1,
},
});
Output
ebay_api /sale: Auth token is invalid. +209ms
expected data
Return data from the GetOrders() call rather than an exception.
Would you like to work on this issue?
- Yes
- No
- Maybe
More info:
From my perspective this error (931) seems to be the same as the "hard expired" error (932). Maybe if ebay-api handled 931 like it was 932 this issue would be resolved?
We had never seen this error so far, thank you for reporting it. It makes sense to handle it like you said. I'll release a fix this week.
Sounds good. Much appreciated!
@walker0643 Released 9.1.1
Confirming that the change fixed my issue. Thank you, @dantio
Confirming that the change fixed my issue. Thank you, @dantio
Is nice to see you are still helping us when you can. After you stopped contributting at input-leap they get stucked at that same bug. Maybe everybody is too busy. At least there's already another solution. Thank you for all.