httpservletrequest从get呼叫中获取查询参数

发布于 2025-01-20 14:19:40 字数 464 浏览 0 评论 0原文

我正在尝试从具有如下网址的 GET 调用中获取查询参数 client_id

https://example.com?client_id=aclient-id&param2=value2&param3=value3

当我尝试获取查询时,我得到 clientId 的空值参数,有什么想法为什么会发生这种情况吗?

HttpServletRequest httpRequest = (HttpServletRequest) request;
final String clientId = httpRequest.getParameter("client_id");

其他调用(例如 http.getRequestURI()http.getMethod)返回预期值。

I'm trying to get the query parameter client_id from a GET call with a url like this:

https://example.com?client_id=aclient-id¶m2=value2¶m3=value3

I'm getting a null value for clientId when I try to get the query parameter, any ideas why this is happening?

HttpServletRequest httpRequest = (HttpServletRequest) request;
final String clientId = httpRequest.getParameter("client_id");

The other calls like http.getRequestURI() and http.getMethod return the expected values.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空袭的梦i 2025-01-27 14:19:40

请检查实际发送到服务器的客户端ID的字符串值。在您的示例中,您在您要寻找的代码中说clientId ,而当它们对人的语义意义时,这些值与计算机是不同的值。

您还可以查看httpservletrequest中的所有参数值:

httpRequest.getParameterMap()
    .entrySet()
    .stream()
    .forEach(System.out::println);

Please check what the string value of the client id that is actually being sent to the server. In your example you say clientId in your code you're looking for client_id, while they make semantic sense to humans, those are different values to a computer.

You can also take a peek at all the parameter values in your HttpServletRequest:

httpRequest.getParameterMap()
    .entrySet()
    .stream()
    .forEach(System.out::println);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文