Questions tagged [proxies]

215 questions
4
votes
3 answers

Combining proxies with different EitherT in base monad

For example, having... consumer :: Proxy p => () -> Consumer p a (EitherT String IO) () producer :: Proxy p => () -> Producer p a (EitherT ByteString IO) r ... how do I make this work? session :: EitherT ByteString (EitherT String IO) () session =…
Danny Navarro
  • 2,733
  • 1
  • 18
  • 22
3
votes
3 answers

Check if SOCKS4 or 5 in PHP?

Basically, I have a list of proxies. I'm wanting to separate them into SOCKS4 and SOCKS5. I'd like to code up a small PHP script to do this for me. How would I go about detecting which type it is in PHP?
Rob
  • 7,980
  • 30
  • 75
  • 115
3
votes
3 answers

Developing with GWT (in eclipse) when NOT using a Java Backend

I want to use a python backend while developing a SmartGWT front end. In order to get the debugging working correctly, I think I need the dev server running in eclipse which means the webserver will be running in eclipse. My python (Django) backend…
boatcoder
  • 17,525
  • 18
  • 114
  • 178
3
votes
0 answers

How do I use a SOCKS proxy with npm got package?

I'm using npm got package to do web scraping and I want to use a SOCKS proxy. The docs have this snippet about using proxies: import got from 'got'; import {HttpsProxyAgent} from 'hpagent'; await got('https://sindresorhus.com', { agent: { …
3
votes
2 answers

I tried to send a python request to a proxy but it failed

I tried to send a python request to a proxy but it failed. What did I do wrong? Here's the code: import requests url = 'https://httpbin.org/ip' proxies = { "http": 'http://103.250.153.242', "https": 'http://103.250.153.242' } response =…
Loys Parker
  • 31
  • 1
  • 2
3
votes
1 answer

Python selenium prevent website from blocking

I don’t really have a project in mind, just trying to figure stuff out when I started wondering how I can prevent a site from knowing that I visited them repeatedly. I had no idea how to use selenium and that’s why it was a lot of try and error -…
user10837120
3
votes
1 answer

How to Use luminati.io with Phantomjs

I have been using proxy ips with phantomjs to scrape data. Has someone used luminati.io with phantomjs? since luminati uses end user computer ips to read pages. Its costly and I need to know if someone has used this already and I should try…
3
votes
1 answer

Whats the safest way to remove lazy initialization proxies generated by Hibernate?

I would like to keep the Parent/Child relationship but when I parse through the Parent Object I don't want to fetch the child elements.
user1172766
  • 263
  • 1
  • 3
  • 9
3
votes
3 answers

Python proxy question

Is it possible to filter all outgoing connections through a HTTPS or SOCKS proxy? I have a script that users various apis & calls scripts that use mechanize/urllib. I'd like to filter every connection through a proxy, setting the proxy in my 'main'…
xporter
  • 93
  • 2
3
votes
2 answers

Python (anaconda) add packages with pip behind proxy

sorry for asking a probalby stupid question, however, I am completely new to setting up/installing python packages, i.e. I have never done it. So far I installed anaconda3 and worked with the pre installed packages. Now I need the google api pyhon…
Johannes
  • 147
  • 3
  • 14
3
votes
1 answer

Setting up a proxy for a specific program, like Bluestacks.

I am using ubot to manipulate droid apps via bluestacks. I've been stuck for over a day now trying to figure out the best way to setup a proxy, just for bluestacks. I've read about ProxyCap and Proxifier, but is there any way to do this via command…
user3664782
  • 33
  • 1
  • 6
3
votes
1 answer

Dynamic Service Locator In JavaScript?

I'm trying to get a dynamic service locator written in JavaScript using Harmony Proxies (Node.js). Basically you would create a new container: var container = new Container(); You would then be able to set and get values like a traditional service…
Daniel
  • 1,692
  • 2
  • 13
  • 19
2
votes
0 answers

How to enabled CGLIB proxies on @Component?

I'm seeing an error in my SpringBoot Application after using the micrometer @Timed annotation. Bean named 'XXXX' is expected to be of type 'xxxx.XXXX' but was actually of type 'com.sun.proxy.$Proxy223' This is novel to me, but I'm now aware of the…
Shane Gannon
  • 6,770
  • 7
  • 41
  • 64
2
votes
1 answer

why proxies doesn't work when switching from requests to selenium?

I tried other solutions here on Stackoverflow, bit non of them worked for me. I'm trying to configure selenium with a proxy, It worked with requests library, I used this command: requests.get('https://stackoverflow.com',…
user15403136
2
votes
1 answer

The WebBrowser control won't work with Proxies from a text file

I'm not that great with visual basic so sorry about that, but I have a basic understanding of java, and a few other programming languages so I'm not completely new. I want to make a program that connects to a website with a proxy loaded from a text…
user8738397
1
2
3
14 15