|
5 | 5 | Unless authentication is disabled on the server, all requests must be authorized using the login credentials of a valid user.
|
6 | 6 |
|
7 | 7 | Request are authorized through an `Authorization` header.
|
8 |
| -The header value encoding follows the standard format for `Basic` authentication (RFC 7617), which is as follows: |
| 8 | +Both _basic_ and _bearer_ authentication are supported. |
| 9 | + |
| 10 | +[NOTE] |
| 11 | +If authentication is disabled on the server, requests can be sent without an `Authorization` header. |
| 12 | + |
| 13 | + |
| 14 | +== Basic authentication |
| 15 | + |
| 16 | +The header format for basic authentication follows the standard format (RFC 7617): |
9 | 17 |
|
10 | 18 | ----
|
11 | 19 | Authorization: Basic <base64(username:password)>
|
12 | 20 | ----
|
13 | 21 |
|
14 |
| -For example, to authenticate as user `neo4j` with password `verysecret`, first join them with a colon: |
| 22 | +.Basic authentication |
| 23 | +===== |
| 24 | +To authenticate as user `neo4j` with password `verysecret`, first join them with a colon: |
15 | 25 |
|
16 | 26 | ----
|
17 | 27 | neo4j:verysecret
|
@@ -39,9 +49,42 @@ To obtain the final header, prepend `Basic` to the base64-encoding of the creden
|
39 | 49 | ----
|
40 | 50 | Authorization: Basic bmVvNGo6dmVyeXNlY3JldA==
|
41 | 51 | ----
|
| 52 | +===== |
42 | 53 |
|
43 |
| -[NOTE] |
44 |
| -If authentication is disabled on the server, requests can be sent without an `Authorization` header. |
| 54 | + |
| 55 | +== Bearer authentication |
| 56 | + |
| 57 | +The header format to authenticate with a bearer token is: |
| 58 | + |
| 59 | +---- |
| 60 | +Authorization: Bearer <base64(token)> |
| 61 | +---- |
| 62 | + |
| 63 | +.Bearer authentication |
| 64 | +===== |
| 65 | +To authenticate with the token `xbhkjnlvianztghqwawxqfe`, first base64-encode it: |
| 66 | +
|
| 67 | +---- |
| 68 | +eGJoa2pubHZpYW56dGdocXdhd3hxZmUK |
| 69 | +---- |
| 70 | +
|
| 71 | +.How to base64-encode a string |
| 72 | +[%collapsible] |
| 73 | +==== |
| 74 | +To base64-encode a string on a Linux or Mac machine, use the built-in `base64` command: |
| 75 | + |
| 76 | +[source, bash] |
| 77 | +---- |
| 78 | +echo -n "xbhkjnlvianztghqwawxqfe" | base64 |
| 79 | +---- |
| 80 | +==== |
| 81 | +
|
| 82 | +To obtain the final header, prepend `Bearer` to the base64-encoding of the credential: |
| 83 | +
|
| 84 | +---- |
| 85 | +Authorization: Bearer eGJoa2pubHZpYW56dGdocXdhd3hxZmUK |
| 86 | +---- |
| 87 | +===== |
45 | 88 |
|
46 | 89 |
|
47 | 90 | == Missing authorization
|
|
0 commit comments