WinError 10049: The requested address is not valid in its context

前端 未结 3 2140
野性不改
野性不改 2020-12-17 02:51

I am trying to make a raw HTTP request in Python and write the response to a file. When I try to bind to the resolved IP Address or domain of the host I get this:

相关标签:
3条回答
  • 2020-12-17 03:01

    Create a server using third party softwares like xamp, wamp

    then,

     soc.bind(('server_ip',port_number))
    
    0 讨论(0)
  • 2020-12-17 03:12
    from socket import *
    soc = socket(AF_INET, SOCK_STREAM)
    soc.connect(('168.62.48.183', 80))
    soc.send('GET /miners/get?file=BFGMiner-3.99-r.1-win32.zip HTTP/1.1\nUser-Agent:MultiMiner/V3\nHost: www.multiminerapp.com\n')
    with open("http-response.txt","w") as respfile:
        response = soc.recv(1024) # <--- Use select.epoll or asyncore instead!
        respfile.writelines(response)
    

    The reason for why your code fails tho is because you're trying to bind to an external IP.
    Your machine is not aware of this IP hence the error message, if you'd change it to say 127.0.0.1 it would work, but then again you would need a .listen(4) and ns, na = soc.accept() before utelizing .send() and your soc.recv() would need to be ns.recv(1024).

    In other words, you mixed up client sockets with server sockets and you're binding to a IP not present on the local machine.

    Also note: soc.recv() will fail, you need a buffer-size argument like so: soc.recv(1024)

    Python3:

    from socket import *
    soc = socket(AF_INET, SOCK_STREAM)
    soc.connect(('168.62.48.183', 80))
    soc.send(b'GET /miners/get?file=BFGMiner-3.99-r.1-win32.zip HTTP/1.1\nUser-Agent:MultiMiner/V3\nHost: www.multiminerapp.com\n\n') # Note the double \n\n at the end.
    with open("http-response.txt","wb") as respfile:
        response = soc.recv(8192)
        respfile.write(response)
    

    There's two major differences, we send a binary GET /miners/.. string rather than a standard string. Secondly we open the output-file in a binary form because the data recieved will also be in binary form..

    This is because Python no longer decodes the string for you because of a number of reasons, so you need to either treat the data as binary or manually decode it along the way.

    You should probably:

    import urllib.request
    f = urllib.request.urlopen("http://www.multiminerapp.com/miners/get?file=BFGMiner-3.99-r.1-win32.zip")
    print(f.read())
    
    0 讨论(0)
  • 2020-12-17 03:23

    First, you must connect both devices to the same network. Then, for the server.py (or anything you want to call it)

    Use

    soc.bind(('', PORT))
    

    Instead of

    soc.bind(('IP', PORT))
    
    0 讨论(0)
提交回复
热议问题