Skip to content

Commit 7be04ca

Browse files
Bearer auth (#1)
1 parent 1e6113d commit 7be04ca

File tree

1 file changed

+47
-4
lines changed

1 file changed

+47
-4
lines changed

modules/ROOT/pages/authentication-authorization.adoc

+47-4
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,23 @@
55
Unless authentication is disabled on the server, all requests must be authorized using the login credentials of a valid user.
66

77
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):
917

1018
----
1119
Authorization: Basic <base64(username:password)>
1220
----
1321

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:
1525
1626
----
1727
neo4j:verysecret
@@ -39,9 +49,42 @@ To obtain the final header, prepend `Basic` to the base64-encoding of the creden
3949
----
4050
Authorization: Basic bmVvNGo6dmVyeXNlY3JldA==
4151
----
52+
=====
4253

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+
=====
4588

4689

4790
== Missing authorization

0 commit comments

Comments
 (0)