Hello guys! I have this HTTP url:
local FavoriteItems = {2,8,9,10,11,12,13,17,18,19,21,24,27,28,29,30,31,32,34,38,40,41,42,43,44,45,46,47,62,64,65,66,67,68,69,70,71,72}
local FavoritesList = table.concat(FavoriteItems, ",")
local url = "https://www.roproxy.com/users/favorites/list-json?assetTypeId="..FavoritesList.."&itemsPerPage=100&userId=".. UserId,
however I don’t think I can just shove a table in like i would be able to for a normal http request because of the “assetTypeId=” requirement. How would i change “assetTypeId=” to just “assetType=” so that I am able to just shove a table in like how I’m doing (To limit the requests) ?
Right now the data is just: “AssetType does not exist.”