Skip to content
#

apis

Here are 877 public repositories matching this topic...

joshkping
joshkping commented Nov 16, 2021

Is there an existing issue for this?

  • I have searched the existing issues

Kong version ($ kong version)

2.5.1.0

Current Behavior

When calling kong.response.exit(), the function automatically sets the Content-Length header on the response even if the Transfer-Encoding header is present. This is in violation of RFC 7230 3.3.2:

A sender MUST NOT send a Content-

piyushgupta243
piyushgupta243 commented Nov 2, 2021

Issue

The response header does not reflect the correct version for HTTP2 requests. Even though, wiremock replies in h2 but the version in the response header shows "HTTP/1.1 200". This is caused by the hardcoded value in the toString() method of Response.java class

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        **sb.append("HTTP
kuma
bartsmykla
bartsmykla commented Jan 20, 2022

What happened?

As parsing time.Duration works only with time periods (i.e 1m, 24h, 23h59m etc.) you cannot specify period in days/months/years as we suggests in help/docs of our commands:
https://github.com/kumahq/kuma/blob/8708885a8ef244f0806aa7d5dae08c7dde64a7bb/app/kumactl/cmd/generate/generate_zoneingress_token.go#L29
we can fix it by changing flag description/help, but I think we

sharunkumar
sharunkumar commented Feb 7, 2022

Describe the event source. What app is this for, and what event does the trigger correspond to?
A trigger for firing when a new reddit post is created in a subreddit.
Currently there's "new hot post in subreddit" and "new link in subreddit" triggers for reddit which seem to be subsets of "new post" in general.

**Please provide a link to the relevant API docs for the specific service / ope

selakap
selakap commented Oct 2, 2020

Describe your problem(s)

Expect a way to edit an existing comment on the API. In the current implementation, we cannot do such an update using the POST restful API [1].

  1. https://apim.docs.wso2.com/en/3.1.0/develop/product-apis/devportal-apis/devportal-v1/devportal-v1/#/Comments/addCommentToAPI

Describe your solution

Introduce a PUT resource to /apis/{apiId}/comments

Improve this page

Add a description, image, and links to the apis topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the apis topic, visit your repo's landing page and select "manage topics."

Learn more