Secret

사용되지 않는 항목 표시

*이 콘텐츠는 AI(베타)를 사용해 번역되었으며, 오류가 있을 수 있습니다. 이 페이지를 영어로 보려면 여기를 클릭하세요.

Datatype.Secret 데이터 형식은 HttpService:GetSecret() 에서 반환하는 비밀 콘텐츠를 저장합니다. 이 콘텐츠는 인쇄하거나 로그할 수 없지만 빌드 내장 함수를 사용하여 수정할 수 있습니다. 콘텐츠 블록은 아래에 표시된 코드 블록과 같이 작동합니다.


local HttpService = game:GetService("HttpService")
local mySiteApiKey = HttpService:GetSecret("my_site")
local url = "https://apis.mysite.com?apiKey="
local urlWithKey = mySiteApiKey:AddPrefix(url)
local params = "&request=join&user=myname"
local resultingUrl = urlWithKey:AddSuffix(params)

요약

메서드

메서드

AddPrefix

제공된 문자열을 비밀 콘텐츠로 결합하여 사용자에게 비밀 키를 사용할 수 없도록 하는 경우 "Bearer" 에 대한 액세스를 반환합니다.


local HttpService = game:GetService("HttpService")
local secret = HttpService:GetSecret("yelp")
local authHeader = secret:AddPrefix("Bearer ")

매개 변수

prefix: string

반환

AddSuffix

원본 비밀과 제공된 문자열 매개 변수를 조합하여 형성된 비밀을 반환합니다. 키와 쿼리 매개 변수가 포함된 URL을 생성하는 데 유용합니다.


local HttpService = game:GetService("HttpService")
local googleMapsApiKey = HttpService:GetSecret("google_map")
local baseUrl = "https://maps.googleapis.com/maps/api/distancematrix/json?key="
local queryParams = "&destinations=" .. destination .. "&origins=" .. origin .. "&departure_time=now&units=imperial"
local authedUrl = googleMapsApiKey:AddPrefix(baseUrl)
local queryUrl = authedUrl:AddSuffix(queryParams)

매개 변수

suffix: string

반환