Skip to content
Advertisement

Tag: oauth

How to use Google OAuth with Deno js?

Is there some libraries or modules for Google OAuth in Deno.js? I am trying to impelemnt google login on my web application and use this google account for uploading youtube videos in deno.js. I am grateful for any help! Answer I think a generic solution for OAuth doesn’t exist yet. However, if you can override the default implementation, you can

Acquiring a new token with `axios.interceptors`

When the token expires, I want to get a new token based on refresh_token. I have read that this can be obtained with axios.interceptors. Please check if: Have I correctly configured axios.interceptors? Have I placed it in the right place, i.e. above theItems class. axios.interceptors.response is assigned to theinterceptor variable. What should I do with this variable? In addition to

Advertisement