RajKon
RajKon

Reputation: 470

how to by pass proxy to for the rest api call

I am using robotframework and I would like know what can I do so that I can avoid going through the proxy? I am using Windows and I have made sure there are no proxy variables in environment variables. I am also connected via WI-FI unlike others who are on LAN for who do not see issue with the GET request.

KEYWORD ${resp} = RequestsLibrary . Get Request session, /token, params=${user info}, headers=${HEADER}
Documentation:  
Send a GET request on the session object found using the

Start / End / Elapsed:  20180102 13:17:11.558 / 20180102 13:18:26.569 / 00:01:15.011
13:17:11.566    DEBUG   Starting new HTTP connection (1): proxy-sanfran 
13:17:11.577    DEBUG   http://proxy-sanfran:80 "GET http://localhost:9000/token?userName=test_user&password=test123 HTTP/1.1" 301 None 
13:17:11.586    DEBUG   Resetting dropped connection: proxy-sanfran 
13:18:26.566    DEBUG   http://proxy-sanfran:80 "GET http://10.138.37.40 HTTP/1.1" 503 787  
13:18:26.568    INFO    Get Request using : alias=session, uri=/token, headers={'Content-Type': 'application/json'} json=None   
13:18:26.568    INFO    ${resp} = <Response [503]>

Upvotes: 1

Views: 1544

Answers (1)

WerKop
WerKop

Reputation: 63

try with setting environment variable

NO_PROXY = "localhost"

Upvotes: 1

Related Questions