AEP-231 recommends to use the get verb for BatchGet methods. Using the get verb here means all request fields will be passed as query parameters. Passing a list of path in a query parameter will quickly hit the max URL lenght, which is 2048 characters.
Suggestion: use the post verb for BatchGet methods.
AEP-231 recommends to use the
getverb for BatchGet methods. Using thegetverb here means all request fields will be passed as query parameters. Passing a list of path in a query parameter will quickly hit the max URL lenght, which is 2048 characters.Suggestion: use the
postverb for BatchGet methods.