Can't do HTTP Requests to localhost? [closed]
Asked by
gskw 1046
11 years ago
So basically I can't do any HTTP Requests to http://localhost.
It displays the following error:
2 | 19 : 49 : 52.143 - Script 'Workspace.HttpScript' , Line 49 - global HttpReq |
3 | 19 : 49 : 52.144 - Script 'Workspace.HttpScript' , Line 114 |
4 | 19 : 49 : 52.144 - Stack End |
My code is as following:
1 | function HttpReq(address) |
2 | printConsole( "Log" , "Doing request: " ..address) |
3 | local rep = game.HttpService:GetAsync(address) |
4 | printConsole( "Log" , "Got reply: " ..rep) |
7 | local sid = HttpReq( "http://" ..url.. "/getsid?auth=" .._G.SettingsModule.AuthCode.. "&pid=" ..pid) |
However, I can easily do HTTP Requests to my public server.
EDIT: I forgot my web server listens to the port 8080. So I changed my first line to this:
1 | local url = "localhost:8080/robloxalt" |
Now it shows the following error:
1 | 20 : 01 : 58.948 - Not Found |
2 | 20 : 01 : 58.948 - Script 'Workspace.HttpScript' , Line 49 - global HttpReq |
3 | 20 : 01 : 58.948 - Script 'Workspace.HttpScript' , Line 114 |
4 | 20 : 01 : 58.948 - Stack End |
Is this a 404 error? The file I'm requesting should be there...
EDIT 2: See my answer below.
Locked by evaera
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?