remove game. Before the part you changed? I never tried that before so ya…
Wait i think that proxy got shutdown a while ago… Lemme find you another one real quick
This is it (hopefully this one didnt shut down aswell…)
local url = "https://roproxytest.heroku.com/docs#!/Votes/get_v1_games_votes"
I think it did same error.
Don’t you also have to pass in the place or universe id
Btw i just realized you took the url of the website i told you to open…
Yeah, didn’t you say to take the Url from this website? Then how would I get the likes from it? I’m trying to make a Progress bar of the goal with a text of how many likes the game has…
I’ve never used HTTP Service before…
local httpService = game:GetService("HttpService")
local universeId = --your game's universe ID
local url = "https://roproxytest.heroku.com/games/docs#/v1/games/"..universeId.."/user-vote"
local data = httpService:GetAsync(url)
local upVotes = data.upVotes
local downVotes = data.downVotes
If this doesn’t work try the proxy server i told you above
This shouldn’t work because you cannot access Roblox’s servers from roblox (without a Proxy)
Thats why I said if this doesn’t work (which i was pretty sure wont) he should use the proxy i told him about earlier, just before you asked your first question…
Ill just edit it and put the proxy for you
@msix29 @domboss37 I’m getting this error
HttpError: DnsResolve
data variable getting the error here is the code
local httpService = game:GetService("HttpService")
local url = "https://roproxytest.heroku.com/games/docs#/v1/games/"..game.PlaceId.."/user-vote"
local data = httpService:GetAsync(url)
local upVotes = data.upVotes
local downVotes = data.downVotes
print(upVotes)
print(downVotes)
Looks like this proxy is also down ;-; imma look for another…
Actually other than proxy servers, try changing url to this
"https://api.roblox.com/universes/get-universe-containing-place?placeid = yourPlaceId"
Now I’m getting the roblox resources error
HttpService is not allowed to access ROBLOX resources
local httpService = game:GetService("HttpService")
local url = "https://api.roblox.com/universes/get-universe-containing-place?placeid = 3830638181"
local data = httpService:GetAsync(url)
local upVotes = data.upVotes
local downVotes = data.downVotes
print(upVotes)
print(downVotes)
Im getting tired of roblox, just follow this and if u couldn’t solve it tell me and ill help you… I gotta sleep in a bit so tmr ill help
Ok, thanks for helping I’ll try this.
I’ve tried that it’s very confusing for me I just want a like tracker? Why is it so hard?
I don’t even know how to program Java. Plus he isn’t really getting the Likes.
local url = "https://api.roproxy.com/universes/get-universe-containing-place?placeid = 3830638181"