You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for this library, it makes dealing with the ebay API significantly easier.
I was trying to access my own ebay account programmatically.
I am able to use this code to get the URL for the user login, but it seems that the only way I can provide credentials to get a user token is to go through a browser. Is there a way to provide credentials to my script so I can get a user authorization, and be able to download my ebay user's history, etc?
The text was updated successfully, but these errors were encountered:
@apanagar It's not recommended to generate it through scripts. As the authorization code grant flow typically involves a human in the flow that sign-in in order to obtain the authorization token that is later used to obtain the access code. You can copy and paste the url in the browser to get the code.
If you are using the express app the you can use
res.redirect(url)
which will redirect to sign in page automatically.
Hope this helps !. Kindly let me know if you need more help.
Thanks for this library, it makes dealing with the ebay API significantly easier.
I was trying to access my own ebay account programmatically.
I am able to use this code to get the URL for the user login, but it seems that the only way I can provide credentials to get a user token is to go through a browser. Is there a way to provide credentials to my script so I can get a user authorization, and be able to download my ebay user's history, etc?
The text was updated successfully, but these errors were encountered: