Corregge OAuth YouTube piattaforma senza access token in memoria.

Il refresh token ENV non veniva scambiato finché expires_at era vuoto,
causando 500 Unauthorized alla creazione sessione YouTube.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
2026-06-02 22:43:31 +02:00
parent 9b40deeb61
commit 92c0058085
2 changed files with 9 additions and 1 deletions

View File

@@ -2,9 +2,17 @@ module Api
module V1
class BaseController < ApplicationController
rescue_from Teams::EntitlementError, with: :render_entitlement_error
rescue_from Youtube::BroadcastService::Error, with: :render_youtube_error
private
def render_youtube_error(error)
render json: {
error: "YouTube: #{error.message}",
error_code: "youtube_api_error"
}, status: :unprocessable_entity
end
def render_entitlement_error(error)
render json: {
error: error.message,

View File

@@ -7,7 +7,7 @@ module Youtube
end
def apply!(service)
refresh! if @credential.expired?
refresh! if @credential.refresh_token.present? && (@credential.access_token.blank? || @credential.expired?)
service.authorization = @credential.access_token
service
end