Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ hawk.1.header
1353832234
j4h3g2
GET
/resource?a=1&b=2
/resource/1?b=1&a=2
example.com
8000

Expand Down Expand Up @@ -291,7 +291,7 @@ hawk.1.header
1353832234
j4h3g2
POST
/resource?a=1&b=2
/resource/1?b=1&a=2
example.com
8000
Yi9LfIIFRtBEPt74PVmbTF/xVAwPn7ub15ePICfgnuY=
Expand All @@ -303,7 +303,7 @@ Then calculates the request MAC and includes the **Hawk** key identifier, timest
and request MAC, with the request using the HTTP `Authorization` request header field:

```
POST /resource/1 HTTP/1.1
POST /resource/1?b=1&a=2 HTTP/1.1
Host: example.com:8000
Authorization: Hawk id="dh37fgj492je", ts="1353832234", nonce="j4h3g2", hash="Yi9LfIIFRtBEPt74PVmbTF/xVAwPn7ub15ePICfgnuY=", ext="some-app-ext-data", mac="aSe1DERmZuRl3pI36/9BdZmnErTw3sNzOOAUlfeKjVw="
```
Expand Down