Secret

非推奨を表示

*このコンテンツは、ベータ版のAI(人工知能)を使用して翻訳されており、エラーが含まれている可能性があります。このページを英語で表示するには、 こちら をクリックしてください。

データタイプの秘密 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

提供された文字列を秘密に結合することで、API キーを押さえたりするなど、秘密のコンテンツを返します。Returns a secret formed by concatenating the supplied string to the secret content, for example prepending "Bearer" to the API key.


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

戻り値