summaryrefslogtreecommitdiff
path: root/bip-0071.mediawiki
blob: d1e21c842de14a42cb937e80422a9202b851c801 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{{bip}}

<pre>
  BIP: 71
  Title: Payment Protocol MIME types
  Author: Gavin Andresen <gavinandresen@gmail.com>
  Status: Draft
  Type: Standards Track
  Created: 29-07-2013
</pre>

==Abstract==

This BIP defines a MIME (RFC 2046) Media Type for Bitcoin payment
request messages.

==Motivation==

Wallet or server software that sends payment protocol messages over
email or http should follow Internet standards for properly
encapsulating the messages.

==Specification==

The Media Type (Content-Type in HTML/email headers) for bitcoin
protocol messages shall be:

{|
| Message || Type/Subtype
|-
| PaymentRequest || application/bitcoin-paymentrequest
|-
| Payment || application/bitcoin-payment
|-
| PaymentACK || application/bitcoin-paymentack
|}

Payment protocol messages are encoded in binary.

==Example==

A web server generating a PaymentRequest message to initiate the
payment protocol would precede the binary message data with the
following headers:
<pre>
Content-Type: application/bitcoin-paymentrequest
Content-Transfer-Encoding: binary
</pre>

[[Category:BIP]]