You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? Keep it simple and clear!
I have a roblox assetid (“rbxassetid://xyz”) and I want to get the URL of that assetid to use for a discord webhook.
What is the issue? Include screenshots / videos if possible!
Nothing works
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
I have tried most of the URLs and end-points that have been mentioned on the devforum but none of them seem to work.
For example I have an asset id of rbxassetid://99761773347476 → 99761773347476
Putting it into the url like so https://assetdelivery.roblox.com/v1/asset?id=99761773347476
and then setting that as the avatar_url in the discord webhook JSON
Which results in the webhook having the default discord icon. Here is my code:
local ID = 99761773347476
local Message = {
["username"] = "Ore Announcer",
["avatar_url"] = `https://assetdelivery.roblox.com/v1/asset?id={ID}`,
["content"] = "Hello World"
}
HttpService:PostAsync(STUDIO_URL, HttpService:JSONEncode(Message), Enum.HttpContentType.ApplicationJson)
Unless I am missing something or misunderstanding I dont understand why this doesnt work
local HS = game:GetService("HttpService")
local Id = 99761773347476
local Success, Request = pcall(HS.RequestAsync, HS, {
Url = `https://thumbnails.roproxy.com/v1/assets?assetIds={Id}&returnPolicy=PlaceHolder&size=420x420&format=png`,
Method = "GET"
})
if Success then
local Success2, Body = pcall(HS.JSONDecode, HS, Request.Body)
if Success2 then
if Body.errors then
warn(Body.errors)
else
local Image = Body.data[1].imageUrl
print(Image)
end
else
warn(Body)
end
else
warn(Request)
end