Are the post and get forms of the user search API equivalent?
-
I noticed that the FusionAuth java client only posts user searches, it doesn't perform a get.
Will that be an issue if I am using the database search engine?
-
Yes, they are equivalent. Building this JSON:
{ "search": { "queryString": "fusionauth.io" } }
and posting it is equivalent to a GET with
queryString=fusionauth.io
.