In the postman collection, the default value of the variable base_url is https://localhost/apps/passwords. If I change localhost to mydomain.tld, every api endpoint worked fine for me except the endpoint POST /api/1.0/share/create. It returns status 405 Method Not Allowed.
I shared a password manually with another user in the browser and saw that the api endpoint used is POST https://mydomain.tld/index.php/apps/passwords/api/1.0/share/create
Feature Description
Change base_url to https://localhost/index.php/apps/passwords in the postman collection. The other api endpoints I tested are still working and POST https://mydomain.tld/index.php/apps/passwords/api/1.0/share/create doesn't return an http error 405 anymore.
In the postman collection, the default value of the variable
base_url
ishttps://localhost/apps/passwords
. If I changelocalhost
tomydomain.tld
, every api endpoint worked fine for me except the endpointPOST /api/1.0/share/create
. It returns status 405 Method Not Allowed.I shared a password manually with another user in the browser and saw that the api endpoint used is
POST https://mydomain.tld/index.php/apps/passwords/api/1.0/share/create
Feature Description
Change
base_url
tohttps://localhost/index.php/apps/passwords
in the postman collection. The other api endpoints I tested are still working andPOST https://mydomain.tld/index.php/apps/passwords/api/1.0/share/create
doesn't return an http error 405 anymore.