The current OAuth flow is not really practicable for daemon apps #1316
Replies: 2 comments 1 reply
-
What is a "daemon application"? How does it differ from an application which is just making Etsy API calls. The 1-hour validity of tokens is not a problem. Just keep track of the time and if it is about to expire, renew it. Renewal does not require the complete OAuth process or any human involvement. |
Beta Was this translation helpful? Give feedback.
-
I see. I think you will have to live with human interaction every 90 days or so to renew your fundamental Etsy access token. ChatGPT has a good long explanation of why they will never provide forever tokens. |
Beta Was this translation helpful? Give feedback.
-
The Auth Code Flow with PKCE is not intended for daemon applications. Perhaps you could add a client credentials flow or similar for accessing the API v3.
Or you could provide a one-time token with longer validity.
Unfortunately I haven't found anything in the documentation, or have I missed something?
Beta Was this translation helpful? Give feedback.
All reactions