775 B
775 B
threads-client
A Roblox server-side client for the Threads service. Handles reuploading clothing assets through your Threads instance.
Installation
Add to your wally.toml dependencies:
[server-dependencies]
ThreadsClient = "secret-rare/threads-client@0.1.0"
Then run:
wally install
Setup
-
Add your API key to the Secrets Store in the Creator Dashboard with the name
THREADS_API_KEY(or your own custom secret name). -
Update
BASE_URLin the module to point to your Threads API instance.
Usage
local ThreadsClient = require(path.to.ThreadsClient)
local newAssetId = ThreadsClient.create(assetId)
if newAssetId ~= -1 then
print("Reuploaded to:", newAssetId)
end