Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Full Proxy Support #3639

Open
Tiuipuv opened this issue Jun 10, 2024 · 1 comment
Open

Full Proxy Support #3639

Tiuipuv opened this issue Jun 10, 2024 · 1 comment
Labels

Comments

@Tiuipuv
Copy link

Tiuipuv commented Jun 10, 2024

Is your feature request related to a problem? Please describe.
Currently, certain corporate environments cannot start or use the webex sdk due to proxy requirements. The current version of the SDK supports setting a proxy for the mercury plugin, but does not include support for generic https fetch requests. This feature would allow these restrictions to be lifted, as the user would be able to specify the proxy in the setup of the sdk.

Describe the solution you'd like
Developed in PR 3624, The user would be able to specify a proxy string on initialization, as shown below:

webex = WebexSdk.init({
  credentials: {
    supertoken: superToken
  },
  config: {
    credentials: {
      client_id,
      client_secret
    },
    proxy: 'http://proxy.company.com'
  }
});

Describe alternatives you've considered
No overrides or alternatives are available, as the request library under the hood does not have any other exposure points for configuration.

Additional context
Add any other context or screenshots about the feature request here.

@Tiuipuv
Copy link
Author

Tiuipuv commented Jun 10, 2024

Can the following branch be linked for issue resolution by a contributor/admin of the sdk?

#3624

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant