-1

In an HTTP get request like this,

http://example.com/page?parameter=value&also=another

i can get the pages with parameter=value and alse=another, But I want something like,

http://example.com/page?parameter<value&also=another

So that i can get the pages with their parameters are less then value. Is there any way to do that?

nagleria
  • 19
  • 4

2 Answers2

0

Hope this works for you.

http://example.com/page?parameter={"lt":value}&also=another

Pass JSON object in query.

Syed Kashan Ali
  • 591
  • 2
  • 8
0

That < character is not allowed in the URL.

You may check out this questin and its answers.

unclexo
  • 3,168
  • 2
  • 16
  • 23