Twitter4j 中的代理配置
我在代理后面。我有代理详细信息。但是我不确定如何使用这些详细信息连接到 Twitter。
我查看了文档,所以我知道这些方法:
setHttpProxy(java.lang.String proxyHost, int proxyPort) void setHttpProxyAuth(java.lang.String proxyUser, java.lang.String proxyPass)
但不可能使用它们,因为 Eclipse 在它们下面画了一条红线。 在使用这些方法之前我需要导入或初始化任何东西吗?
I am behind a proxy. I have the proxy details. However I am not sure how to use these details to connect to twitter.
I have looked at the documentations so I am aware of the methods:
setHttpProxy(java.lang.String proxyHost, int proxyPort)
void setHttpProxyAuth(java.lang.String proxyUser, java.lang.String proxyPass)
But it is not possible to use them as, Eclipse draws a red line underneath them.
Do I need to import or initialise anything before using these methods?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试将属性添加
到 twitter4j.properties 吗?
有关 twitter4j 属性的更多信息,
请 访问 http://twitter4j.org/en/configuration.html twitter4j 在 2.1.4 之前的版本中缺乏代理支持,请参考此线程:
Twitter4j HTTPClient ProxyServer 和 Java
希望有帮助:)
Could you try adding the properties
to the twitter4j.properties ?
More about properties for twitter4j at http://twitter4j.org/en/configuration.html
Note that twitter4j lacks proxy-support in versions earlier then 2.1.4 ref this thread:
Twitter4j HTTPClient ProxyServer and Java
Hope it helps :)