I have very particular situation when I cannot use request header at all and I'm basically need to pass all the parameters as URL parameters. It is not a problem for the v1 API. For example with this request I can easily upload a file
https://content.dropboxapi.com/1/files_put/auto{WorkingPathName}?access_token={AuthorizationToken}
However it does not seem to be possible with v2 API. Specification says "These endpoints accept file content in the request body, so their arguments are instead passed as JSON in the Dropbox-API-Arg request header or arg URL parameter", So there seems to be hope it should work but it either does not accept parameters in URL or access_token parameters is not accepted.
If it is actually possible could somebody give an example how to correctly compose a request for 'https://content.dropboxapi.com/2/files/upload'?
I tried something like this and that did not work.
https://content.dropboxapi.com/2/files/upload?path={WorkingPathName}&access_token={AuthorizationToken}