How to access IntelliJ proxy data programmatically?
Hi Team,
I'm working on a plugin and it needs to access Intellij configured proxy data. via those proxy setting plugin will connected to out side network (ex Internet). Plugin has custom connection and it will not connect through IntelliJ. So what are the API availbles to fullfill my rerquirment and steps I need to follow.
Thanks,
Navin
请先登录再写评论。
The IntelliJ IDEA proxy settings are stored in the HttpConfigurable class. You can call HttpConfigurable.getInstance() to get an instance of that class.
Thank you.