From 1d825c97f374099a6cd145cff3194baec0204b1e Mon Sep 17 00:00:00 2001 From: Gardel Date: Thu, 19 Jun 2025 22:45:10 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E8=B0=83=E6=95=B4=E8=BF=87=E6=9C=9F?= =?UTF-8?q?=E6=97=B6=E9=97=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- service/user_service.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/user_service.go b/service/user_service.go index 40bad18..f21bde2 100644 --- a/service/user_service.go +++ b/service/user_service.go @@ -410,7 +410,7 @@ func (u *userServiceImpl) ProfileKey(accessToken string) (resp *ProfileKeyRespon resp = new(ProfileKeyResponse) now := time.Now().UTC() resp.RefreshedAfter = now - resp.ExpiresAt = now.Add(10 * time.Minute) + resp.ExpiresAt = now.Add(90 * 24 * time.Hour) keyPair, err := u.getProfileKey(profileId) if err != nil { return nil, err