I want know if I can use Retrofit with this type of url:
https://example.com/mobile_api.php?action=test
if I try to use Retrofit with a Base Url without the slash at the end of the url I get an Exception, my url is this:
https://example.com/mobile_api.php
not this:
https://example.com/mobile_api.php/
How I can do?