@@ -114,6 +114,7 @@ If the view used with `FileUploadParser` is called with a `filename` URL keyword
*The `FileUploadParser` is for usage with native clients that can upload the file as a raw data request. For web-based uploads, or for native clients with multipart upload support, you should use the `MultiPartParser` parser instead.
*Since this parser's `media_type` matches any content type, `FileUploadParser` should generally be the only parser set on an API view.
*`FileUploadParser` respects Django's standard `FILE_UPLOAD_HANDLERS` setting, and the `request.upload_handlers` attribute. See the [Django documentation][upload-handlers] for more details.
##### Basic usage example:
...
...
@@ -183,6 +184,7 @@ The following third party packages are also available.