I access an external google link and use a private key, for example:
$.ajax({
type: "GET",
url: "https://www.googleapis.com/youtube/v3/search?part=snippet&maxResults=1&q=brksedu&key=(MINHA KEY AQUI)",
success: function(e)
My question is: how to hide this key so that anyone who looks at the source code will not see it? Put it in a variable?
Thank you !!!