postman-code-generators icon indicating copy to clipboard operation
postman-code-generators copied to clipboard

Common repository for all code generators shipped with Postman

Results 141 postman-code-generators issues
Sort by recently updated
recently updated
newest added

same issue as #426 but for Ruby, Java, etc `request.body = "{\n ..."` could be much easier to read when `application/json`.

enhancement
codegen

Replaced `encodeURI` function with `sdk.Url(urlString)` from `postman-collection` to parse the URL

**Describe the bug** If some headers like: Authorization are defined at collection level(Project Folder) then in the examples at right hand side these headers are missing. **Expected code snippet and...

codegen

**Describe the bug** Objective-C unit test case `Resolve URL (Quotes + Special Characters) Copy` has output wherein it parse `%26` as `%2526`. `%26` is clearly a URL encoded `&` symbol,...

codegen

**Describe the bug** There seems to be a bug in URL encode for PHP generator (cURL, HTTP_Request2, pecl_http) and many others languages **To Reproduce** fix the URL encode **Expected code...

codegen

**Is your feature request related to a problem? Please describe.** It is needed an OOP oriented client in JavaScript to call microservices in the front-end side as well as the...

feature
new-language-support
codegen

**Is your feature request related to a problem? Please describe.** Rust is growing fast and gaining acceptance. Postman lacks Rust examples. **Describe the solution you'd like** New code generators in...

feature
new-language-support

The go template change the casing of header names. ```go req.Header.Add("SOAPAction", "MyHeader") ``` will result in: `Soapaction: MyHeader` The template should use this instead to preserve the casing: ```go req.Header["SOAPAction"]...

codegen

**Describe the bug** By default, cURL does not send the Authorization header for a redirect. This is a security feature, [per this CVE](https://curl.se/docs/CVE-2018-1000007.html). Postman allows users to override this with...

enhancement

**Is your feature request related to a problem? Please describe.** Hi! I do have a problem in that I use Postman to flesh out integrations with FileMaker. What I usually...

codegen