Multiple choice technology programming languages

What is the default method for sending a request via the HTTPService MXML tag?

  1. PUT

  2. POST

  3. GET

  4. HEAD

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

HTTPService uses GET as the default method when no method is explicitly specified. POST, PUT, HEAD, and DELETE must be configured through the method property. This default follows standard REST conventions for read operations.