API upload servlet: Difference between revisions
Jump to navigation
Jump to search
w>Jguillo Created page with 'You can upload works using standard HTTP upload via POST multipart request. The upload URL must be retrieved using [work.upload.lookup] = Info = HTTP request must be configure…' |
m 22 revisions imported |
||
(21 intermediate revisions by 6 users not shown) | |||
Line 1: | Line 1: | ||
You can upload works using standard HTTP upload via POST multipart request. | You can upload works using standard HTTP upload via POST multipart request. | ||
The upload URL must be retrieved using [work.upload.lookup] | The upload URL must be retrieved using [[work.upload.lookup]] | ||
= Info = | = Info = | ||
Line 10: | Line 10: | ||
= Parameters = | = Parameters = | ||
* '''uploadid*:''' Upload ID returned by [work.upload.lookup]. | * '''uploadid*:''' Upload ID returned by [[work.upload.lookup]]. | ||
** Can be included in the POST body or as a querystring argument in the URL | ** Can be included in the POST body or as a querystring argument in the URL | ||
* '''file*:''' File contents as a file parameter in the POST body | * '''file*:''' File contents as a file parameter in the POST body | ||
Line 16: | Line 16: | ||
= Returns = | = Returns = | ||
The servlet returns | The servlet returns an '''upload ticket''' (see [[work.upload.commit]]) directly (with no XML enclosure) | ||
= | = Example = | ||
REQUEST: < | REQUEST: | ||
<nowiki>http://upload01.safecreative.org/api-upload</nowiki> | |||
<pre> | |||
Content-Type: multipart/form-data; boundary=AaB03x | |||
--AaB03x | --AaB03x | ||
Content-Disposition: form-data; name="uploadid" | Content-Disposition: form-data; name="uploadid" | ||
Line 40: | Line 42: | ||
HvWIbGj7anDefJK3tQHdPze8ekYaVUQJgKw_N6t0Wd_UblANNOjyVfkyK0fgPXRPgiR8SyVr7HmS4Uiiediu6MlFVYIcjUD0zc4Kc8m3e2Irr14iQi-A215pEaqlvOSZ6WUIbWvY-GD2e8akWxhESdnFG088_nUHEsAjkOvnF-ogK144M4vLuIj4Ylc6inW-80LNnqH10kh7zMJcxsv0lZzTMGrXa2pN | HvWIbGj7anDefJK3tQHdPze8ekYaVUQJgKw_N6t0Wd_UblANNOjyVfkyK0fgPXRPgiR8SyVr7HmS4Uiiediu6MlFVYIcjUD0zc4Kc8m3e2Irr14iQi-A215pEaqlvOSZ6WUIbWvY-GD2e8akWxhESdnFG088_nUHEsAjkOvnF-ogK144M4vLuIj4Ylc6inW-80LNnqH10kh7zMJcxsv0lZzTMGrXa2pN | ||
</pre> | </pre> | ||
[[Category:API component]] |
Latest revision as of 08:07, 7 May 2021
You can upload works using standard HTTP upload via POST multipart request.
The upload URL must be retrieved using work.upload.lookup
Info
HTTP request must be configured with header:
Content-Type: multipart/form-data
Parameters
- uploadid*: Upload ID returned by work.upload.lookup.
- Can be included in the POST body or as a querystring argument in the URL
- file*: File contents as a file parameter in the POST body
Returns
The servlet returns an upload ticket (see work.upload.commit) directly (with no XML enclosure)
Example
REQUEST:
http://upload01.safecreative.org/api-upload
Content-Type: multipart/form-data; boundary=AaB03x --AaB03x Content-Disposition: form-data; name="uploadid" 3c33a96c-7743-43d0-9614-db70fa46d3ad --AaB03x Content-Disposition: form-data; name="file"; filename="file1.txt" Content-Type: text/plain These are the file contents --AaB03x--
RESPONSE
HvWIbGj7anDefJK3tQHdPze8ekYaVUQJgKw_N6t0Wd_UblANNOjyVfkyK0fgPXRPgiR8SyVr7HmS4Uiiediu6MlFVYIcjUD0zc4Kc8m3e2Irr14iQi-A215pEaqlvOSZ6WUIbWvY-GD2e8akWxhESdnFG088_nUHEsAjkOvnF-ogK144M4vLuIj4Ylc6inW-80LNnqH10kh7zMJcxsv0lZzTMGrXa2pN