mirror of
https://github.com/encode/django-rest-framework.git
synced 2024-11-22 17:47:04 +03:00
Client docs
This commit is contained in:
parent
c21994e778
commit
f319e073e8
|
@ -91,7 +91,7 @@ REST framework requires the following:
|
||||||
|
|
||||||
The following packages are optional:
|
The following packages are optional:
|
||||||
|
|
||||||
* [coreapi][coreapi] (1.21.0+) - Schema generation support.
|
* [coreapi][coreapi] (1.31.0+) - Schema generation support.
|
||||||
* [Markdown][markdown] (2.1.0+) - Markdown support for the browsable API.
|
* [Markdown][markdown] (2.1.0+) - Markdown support for the browsable API.
|
||||||
* [django-filter][django-filter] (0.9.2+) - Filtering support.
|
* [django-filter][django-filter] (0.9.2+) - Filtering support.
|
||||||
* [django-crispy-forms][django-crispy-forms] - Improved HTML display for filtering.
|
* [django-crispy-forms][django-crispy-forms] - Improved HTML display for filtering.
|
||||||
|
|
|
@ -139,38 +139,51 @@ that credentials are not leaked across differing APIs.
|
||||||
|
|
||||||
The format for adding a new credential is:
|
The format for adding a new credential is:
|
||||||
|
|
||||||
coreapi credentials add <domain> <credentials string>
|
$ coreapi credentials add <domain> <credentials string>
|
||||||
|
|
||||||
For instance:
|
For instance:
|
||||||
|
|
||||||
coreapi credentials add api.example.org "Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b"
|
$ coreapi credentials add api.example.org "Token 9944b09199c62bcf9418ad846dd0e4bbdfc6ee4b"
|
||||||
|
|
||||||
The optional `--auth` flag also allows you to add specific types of authentication,
|
The optional `--auth` flag also allows you to add specific types of authentication,
|
||||||
handling the encoding for you. Currently only `"basic"` is supported as an option here.
|
handling the encoding for you. Currently only `"basic"` is supported as an option here.
|
||||||
For example:
|
For example:
|
||||||
|
|
||||||
coreapi credentials add api.example.org tomchristie:foobar --auth basic
|
$ coreapi credentials add api.example.org tomchristie:foobar --auth basic
|
||||||
|
|
||||||
You can also add specific request headers, using the `headers` command:
|
You can also add specific request headers, using the `headers` command:
|
||||||
|
|
||||||
coreapi headers add api.example.org x-api-version 2
|
$ coreapi headers add api.example.org x-api-version 2
|
||||||
|
|
||||||
For more information and a listing of the available subcommands use `coreapi
|
For more information and a listing of the available subcommands use `coreapi
|
||||||
credentials --help` or `coreapi headers --help`.
|
credentials --help` or `coreapi headers --help`.
|
||||||
|
|
||||||
|
## Codecs
|
||||||
|
|
||||||
|
By default the command line client only includes support for reading Core JSON
|
||||||
|
schemas, however it for installing additional codecs.
|
||||||
|
|
||||||
|
$ pip install openapi-codec jsonhyperschema-codec hal-codec
|
||||||
|
$ coreapi codecs show
|
||||||
|
Codecs
|
||||||
|
corejson "application/vnd.coreapi+json"
|
||||||
|
openapi "application/openapi+json"
|
||||||
|
jsonhyperschema "application/schema+json"
|
||||||
|
hal "application/hal+json"
|
||||||
|
|
||||||
## Utilities
|
## Utilities
|
||||||
|
|
||||||
The command line client includes functionality for bookmarking API URLs
|
The command line client includes functionality for bookmarking API URLs
|
||||||
under a memorable name. For example, you can add a bookmark for the
|
under a memorable name. For example, you can add a bookmark for the
|
||||||
existing API, like so...
|
existing API, like so...
|
||||||
|
|
||||||
coreapi bookmarks add accountmanagement
|
$ coreapi bookmarks add accountmanagement
|
||||||
|
|
||||||
There is also functionality for navigating forward or backward through the
|
There is also functionality for navigating forward or backward through the
|
||||||
history of which API URLs have been accessed.
|
history of which API URLs have been accessed.
|
||||||
|
|
||||||
coreapi history show
|
$ coreapi history show
|
||||||
coreapi history back
|
$ coreapi history back
|
||||||
|
|
||||||
For more information and a listing of the available subcommands use
|
For more information and a listing of the available subcommands use
|
||||||
`coreapi bookmarks --help` or `coreapi history --help`.
|
`coreapi bookmarks --help` or `coreapi history --help`.
|
||||||
|
@ -179,20 +192,20 @@ For more information and a listing of the available subcommands use
|
||||||
|
|
||||||
To display the current `Document`:
|
To display the current `Document`:
|
||||||
|
|
||||||
coreapi show
|
$ coreapi show
|
||||||
|
|
||||||
To reload the current `Document` from the network:
|
To reload the current `Document` from the network:
|
||||||
|
|
||||||
coreapi reload
|
$ coreapi reload
|
||||||
|
|
||||||
To load a schema file from disk:
|
To load a schema file from disk:
|
||||||
|
|
||||||
coreapi load my-api-schema.json --format corejson
|
$ coreapi load my-api-schema.json --format corejson
|
||||||
|
|
||||||
To remove the current document, along with all currently saved history,
|
To remove the current document, along with all currently saved history,
|
||||||
credentials, headers and bookmarks:
|
credentials, headers and bookmarks:
|
||||||
|
|
||||||
coreapi clear
|
$ coreapi clear
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
@ -206,7 +219,7 @@ API that exposes a supported schema format.
|
||||||
You'll need to install the `coreapi` package using `pip` before you can get
|
You'll need to install the `coreapi` package using `pip` before you can get
|
||||||
started.
|
started.
|
||||||
|
|
||||||
pip install coreapi
|
$ pip install coreapi
|
||||||
|
|
||||||
In order to start working with an API, we first need a `Client` instance. The
|
In order to start working with an API, we first need a `Client` instance. The
|
||||||
client holds any configuration around which codecs and transports are supported
|
client holds any configuration around which codecs and transports are supported
|
||||||
|
@ -263,14 +276,15 @@ and subsequently to receive JSON responses made against the API.
|
||||||
You can use a codec directly, in order to load an existing schema definition,
|
You can use a codec directly, in order to load an existing schema definition,
|
||||||
and return the resulting `Document`.
|
and return the resulting `Document`.
|
||||||
|
|
||||||
schema_definition = open('my-api-schema.json', 'r').read()
|
input_file = open('my-api-schema.json', 'rb')
|
||||||
|
schema_definition = input_file.read()
|
||||||
codec = codecs.CoreJSONCodec()
|
codec = codecs.CoreJSONCodec()
|
||||||
schema = codec.load(schema_definition)
|
schema = codec.load(schema_definition)
|
||||||
|
|
||||||
You can also use a codec directly to generate a schema definition given a `Document` instance:
|
You can also use a codec directly to generate a schema definition given a `Document` instance:
|
||||||
|
|
||||||
schema_definition = codec.dump(schema)
|
schema_definition = codec.dump(schema)
|
||||||
output_file = open('my-api-schema.json', 'r')
|
output_file = open('my-api-schema.json', 'rb')
|
||||||
output_file.write(schema_definition)
|
output_file.write(schema_definition)
|
||||||
|
|
||||||
## Transports
|
## Transports
|
||||||
|
|
Loading…
Reference in New Issue
Block a user