πŸ“” Studying/🚧 Errors

[React] HTTP 403 이미지 λ‘œλ“œ μ—λŸ¬ googleusercontent.com

sero. 2023. 3. 1. 20:07
728x90

μ–΄λ–€ μ—λŸ¬?

ν”„λ‘œν•„ 이미지가 μ‚¬μš©λ˜λŠ” μ–΄λŠ 곳이던 λ‚˜νƒ€λ‚˜λ˜ 이 403 μ—λŸ¬..

ν”„λ‘œν•„ 이미지λ₯Ό μ œλŒ€λ‘œ λͺ»κ°€μ Έμ™€μ„œ 그런 λ“― λ³΄μ˜€λ‹€.

κ·Έλž˜μ„œ ν”„λ‘œν•„ 이미지가 λΉˆλ²ˆν•˜κ²Œ μ œλŒ€λ‘œ λœ¨μ§€ μ•Šμ•˜λ‹€.

μ΄λ ‡κ²Œ λΉ„μ–΄μžˆλŠ” 이미지λ₯Ό 확인해보면 srcκ°€ λΉ„μ–΄μžˆλŠ” 것을 λ³Ό 수 μžˆλ‹€.

 

 

 

 

 

원인 νŒŒμ•…

이 λ¬Έμ œλŠ” κ΅¬κΈ€λ‘œ λ‘œκ·ΈμΈν•œ κ³„μ •μ—λ§Œ λ‚˜νƒ€λ‚˜λŠ” ν˜„μƒ..

403 μ—λŸ¬λŠ” μ„œλ²„μ— μš”μ²­μ„ ν–ˆμ§€λ§Œ κΆŒν•œμƒμ˜ 문제둜 κ±°μ ˆλ˜μ—ˆλ‹€λŠ” μ—λŸ¬λΌλŠ”λ°, 보톡 λ‹€λ₯Έ λ„λ©”μΈμ—μ„œ ν˜ΈμΆœν•  λ•Œ λ°œμƒν•œλ‹€κ³  ν•œλ‹€.
λ‹€λ₯Έ λ„λ©”μΈμ—μ„œ 온 μš”μ²­μž„μ„ ν™•μΈν•˜κ³  κ±°μ ˆν–ˆλ‹¨ 것이닀.

 

 

 

 

ν•΄κ²° κ³Όμ •

https://stackoverflow.com/questions/56242788/http-403-on-images-loaded-from-googleusercontent-com

 

HTTP 403 on images loaded from googleusercontent.com

First off, I don't think my problem is related to these questions: question 1, or question 2. Because I'm not using authentication anywhere, or any library either (I don't need to). I'm simply loa...

stackoverflow.com

 

 

μŠ€νƒ μ˜€λ²„ν”Œλ‘œμš°μ—μ„œ 같은 였λ₯˜μ˜ 닡변을 찾을 수 μžˆμ—ˆλ‹€.

이미지 νƒœκ·Έμ— referrerPolicy="no-referrer"λ₯Ό μΆ”κ°€ν•΄μ£Όμ–΄ ν•΄κ²°ν–ˆλ‹€.

 

μ™ΈλΆ€ 링크 곡유 κΈˆμ§€κ°€ 적용된 이미지λ₯Ό no-referrer 섀정을 ν†΅ν•΄μ„œ 보여쀀닀.

 

   <ProfileImage
          src={
            profileImg === '' || profileImg === undefined
              ? defaultProfile
              : profileImg
          }
          alt="ν”„λ‘œν•„μ΄λ―Έμ§€"
          referrerPolicy="no-referrer"
    />

 

 

ν•΄κ²°ν•˜κ³  λ³΄λ‹ˆ ν”„λ‘œν•„ 이미지λ₯Ό ν•œ λ²ˆμ΄λΌλ„ μˆ˜μ •ν•œ κ²½μš°κ°€ μ—†λ‹€λ©΄ ꡬ글 계정 같은 경우 μš”μ²­ν—€λ” 주체가 λ‹¬λžλ‹€. (λ‹Ήμ—°ν•˜κ² μ§€λ§Œ πŸ‘€)

728x90