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

Allow passing additional options to curl command for "Try it out" #6288

Merged
merged 6 commits into from
Sep 22, 2020

Commits on Aug 6, 2020

  1. Pass additional curl options from request

    Allows `requestInterceptor` to add options to the curl command.
    For example:
    
    ```js
    requestInterceptor: function (request) {
      if (request.method === 'GET') {
        request.curlOptions = ['-g']
        request.url = request.url
          .replace('%5B', '[')
          .replace('%5D', ']')
          .replace('%2C', ',');
      }
      return request;
    }
    ```
    adamrdavid committed Aug 6, 2020
    Configuration menu
    Copy the full SHA
    b644645 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    3dd9734 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    f29edc3 View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2020

  1. Configuration menu
    Copy the full SHA
    f5f7601 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2020

  1. Configuration menu
    Copy the full SHA
    31fe68a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    174c3e3 View commit details
    Browse the repository at this point in the history