[BUG] REST API URLs are forced to lowercase, breaking use of some APIs

Reproducing this is simple:

  • Make a custom REST API resource
  • Use a case-sensitive URL with that resource in an app
  • Observe that the URL as actually sent to the endpoint is transformed to lowercase

This completely breaks using various Google REST APIs (such as the Firebase Auth REST API), which are case-sensitive and just plain don't work if the URL string is forced to lowercase.

@icopp

Hey there :wave: This does seem to work (and keep the capitalization) if this is defined in the resource setup itself (where you make the base URL include the case sensitive portion as well), or if you're using a generic Rest API resource connection and passing in the full URL. Would either of those options work for you?