-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
  • 29
  • 5

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
  • 653
  • 4
  • 8
0

That < character is not allowed in the URL.

You may check out this questin and its answers.

unclexo
  • 3,691
  • 2
  • 18
  • 26