I've been trying to make a slack bot that replies to simple queries and does some simple stuff to help around the office. The bot works fine, it just seems that it cannot seem to connect to Slack from behind our proxy. When I test it from my own mobile internet connection it works fine, but when trying to run it behind the proxy it cannot connect to slack. Is there any way I can configure proxy settings for the bot to use when it connects? This is all very strange to me because Slack is not blocked in any way by our proxy.
相关问题
- Decoding body parameters with Spring
- Can't configure nginx as a proxy for tomcat wi
- R connect via proxy in Ubuntu
- Java - How to get annotations from Proxy class?
- What is the actual purpose of designing a proxy cl
相关文章
- Angular CLI: Proxy websocket with proxy.conf.json
- OSX proxy issue with homebrew install
- What to do with extra HTTP header from proxy?
- Firebug console error HTTP 407 Proxy Authenticatio
- How to set a proxy in rubys net/http?
- Bypass the proxy using TcpClient
- Are there any tools to build ASMX proxies from ser
- C# combining GeckoFX + Tor.NET libraries
What language are you developing the bot in? The library you're using to connect to the API should provide functionality to use a proxy during the connection. As an example, in Python you could use the
requests
package, which allows you to define an HTTP and HTTPS proxy.(Docs)