According to the documentation, the req object should have the following properties:
req.bodyText Returns text that has been converted from binary data.
req.bodyJson Parses the body text as JSON.
req.bodyBinary Returns the binary body.
However, when I log the $context->req object, I only see the bodyBinary property. The bodyText and bodyJson properties are not present.
Does this mean that the request body will only contain one of these three options?
TL;DR
Developers are experiencing an issue with PHP function request body handling. The properties `bodyText` and `bodyJson` are missing when logging the req object, which only shows `bodyBinary`. The request body seems to only contain the binary option.