You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can we set the full path while uploading a file through the API:s? It seems to be possible to manually rename the file string.xml to foo/string.xml in onesky's website.
The text was updated successfully, but these errors were encountered:
We are using the file upload API:s to upload our translations
https://github.com/onesky/api-documentation-platform/blob/master/resources/file.md#upload---upload-a-file
We need to use paths in the filename to be able to upload multiple strings.xml files.
But if we upload the files with the name
foo/strings.xml
onesky is saving it asstrings.xml
.We use retrofit and have the endpoint set up like this:
Inspecting the request in an interceptor the part looks like
Content-Disposition: form-data; name="file"; filename="foo/strings.xml"
Response is:
How can we set the full path while uploading a file through the API:s? It seems to be possible to manually rename the file string.xml to foo/string.xml in onesky's website.
The text was updated successfully, but these errors were encountered: