Sonarqube API 参数中包含日期时间的响应
Sonarqube API response with date-time in parameters
尝试提取问题并在点击 SonarQube 时出现此错误 API:
api/issues/search?createdAfter=2013-05-01T13:00:00+0100
{"errors":[{"msg":"Date '2018-06-05 14:00:00 1000' cannot be parsed as either a date or date+time"}]}
您需要将“+”编码为 url 友好,因此您需要将 if 替换为 %2B
。
有关详细信息,请参阅此页面:
https://www.w3schools.com/tags/ref_urlencode.asp
尝试提取问题并在点击 SonarQube 时出现此错误 API:
api/issues/search?createdAfter=2013-05-01T13:00:00+0100
{"errors":[{"msg":"Date '2018-06-05 14:00:00 1000' cannot be parsed as either a date or date+time"}]}
您需要将“+”编码为 url 友好,因此您需要将 if 替换为 %2B
。
有关详细信息,请参阅此页面:
https://www.w3schools.com/tags/ref_urlencode.asp