Would it be possible to allow us to specify our base URL in the android app? I already have an express NodeJS app running online and I'm planning to integrate the API to that. Upon reconstructing the API requests, it seems that our base URL is /v1. That's fine by me, but it would be nice if I can configure this.
In the server URL input in the android app I tried specifying my own base URL by extending it from https://example.com to https://example.com/smsapi and I should expect it to do requests either in /smsapi or /smsapi/v1 but in the server logs it's still doing requests in /v1
Would it be possible to allow us to specify our base URL in the android app? I already have an express NodeJS app running online and I'm planning to integrate the API to that. Upon reconstructing the API requests, it seems that our base URL is
/v1. That's fine by me, but it would be nice if I can configure this.In the server URL input in the android app I tried specifying my own base URL by extending it from
https://example.comtohttps://example.com/smsapiand I should expect it to do requests either in/smsapior/smsapi/v1but in the server logs it's still doing requests in/v1