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)
요약
메서드
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)