Should requestCrawl
be a "procedure" (POST) rather than a "query" (GET)?
#1214
Replies: 5 comments 1 reply
-
I think you are probably correct, and this should be a "procedure" not "query" endpoint, mapping to an HTTP POST request. Curious what @dholms thinks. |
Beta Was this translation helpful? Give feedback.
-
requestCrawl is idempotent though, multiple calls with the same params should result in a no-op |
Beta Was this translation helpful? Give feedback.
-
...but it has side effects, which ideally |
Beta Was this translation helpful? Give feedback.
-
Yeah, it should be a post regardless, agreed |
Beta Was this translation helpful? Give feedback.
-
One suggestion related to this discussion, how about removing I thought this would prevent the confusion between |
Beta Was this translation helpful? Give feedback.
-
HTTP GET requests are supposed to be idempotent, but I'm not sure the behavior of
requestCrawl
strictly matches that.Beta Was this translation helpful? Give feedback.
All reactions