summaryrefslogtreecommitdiffstats
path: root/docs/en/cowboy/2.0/manual/cowboy_rest/index.html
blob: 9d46ab96a882573189e7653e6f0d5ea8dd4d90f0 (plain) (blame)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta name="description" content="">
    <meta name="author" content="Loïc Hoguin based on a design from (Soft10) Pol Cámara">

    <meta name="generator" content="Hugo 0.16" />

    <title>Nine Nines: cowboy_rest(3)</title>

    <link href='http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic' rel='stylesheet' type='text/css'>
	
    <link href="/css/bootstrap.min.css" rel="stylesheet">
    <link href="/css/99s.css" rel="stylesheet">

    <link rel="shortcut icon" href="/img/ico/favicon.ico">
    <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/img/ico/apple-touch-icon-114.png">
    <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/img/ico/apple-touch-icon-72.png">
    <link rel="apple-touch-icon-precomposed" href="/img/ico/apple-touch-icon-57.png">

    
</head>


<body class="">
  <header id="page-head">
    <div id="topbar" class="container">
        <div class="row">
          <div class="span2">
            <h1 id="logo"><a href="/" title="99s">99s</a></h1>
          </div>
          <div class="span10">
            
            <div id="side-header">
              <nav>
                <ul>
                  <li><a title="Hear my thoughts" href="/articles">Articles</a></li>
  				  <li><a title="Watch my talks" href="/talks">Talks</a></li>
  				  <li class="active"><a title="Read the docs" href="/docs">Documentation</a></li>
  				  <li><a title="Request my services" href="/services">Consulting & Training</a></li>
                </ul>
              </nav> 
              <ul id="social">
                <li>
                  <a href="https://github.com/ninenines" title="Check my Github repositories"><img src="/img/ico_github.png" data-hover="/img/ico_github_alt.png" alt="Github"></a>
                </li>
                    <li>
						<a title="Keep in touch!" href="http://twitter.com/lhoguin"><img src="/img/ico_microblog.png" data-hover="/img/ico_microblog_alt.png"></a>
					</li>
                    <li>
						<a title="Contact me" href="mailto:[email protected]"><img src="/img/ico_mail.png" data-hover="/img/ico_mail_alt.png"></a>
					</li>
              </ul>
            </div>
          </div>
        </div>
    </div>


</header>

<div id="contents" class="two_col">
<div class="container">
<div class="row">
<div id="docs" class="span9 maincol">

<h1 class="lined-header"><span>cowboy_rest(3)</span></h1>

<div class="sect1">
<h2 id="_name">Name</h2>
<div class="sectionbody">
<div class="paragraph"><p>cowboy_rest - REST handlers</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_description">Description</h2>
<div class="sectionbody">
<div class="paragraph"><p>The <code>cowboy_rest</code> module implements REST semantics on top of
the HTTP protocol.</p></div>
<div class="paragraph"><p>This module is a sub protocol that defines many callbacks
be implemented by handlers. The <code>init/2</code> and <code>terminate/3</code>
callbacks are common to all handler types and are documented
in the manual for the <a href="cowboy_handler.asciidoc">cowboy_handler</a> module.</p></div>
<div class="paragraph"><p>All other callbacks are optional, though some may become
required depending on the return value of previous callbacks.</p></div>
</div>
</div>
<div class="sect1">
<h2 id="_meta_values">Meta values</h2>
<div class="sectionbody">
<div class="dlist"><dl>
<dt class="hdlist1">
charset = binary()
</dt>
<dd>
<p>
        Negotiated charset.
       <br />
        This value may not be defined if no charset was negotiated.
</p>
</dd>
<dt class="hdlist1">
language = binary()
</dt>
<dd>
<p>
        Negotiated language.
       <br />
        This value may not be defined if no language was negotiated.
</p>
</dd>
<dt class="hdlist1">
media_type = {binary(), binary(), <em>*</em> | [{binary(), binary()}]}
</dt>
<dd>
<p>
        Negotiated media-type.
       <br />
        The media-type is the content-type, excluding the charset.
       <br />
        This value is always defined after the call to
        <code>content_types_provided/2</code>.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_terminate_reasons">Terminate reasons</h2>
<div class="sectionbody">
<div class="paragraph"><p>The following values may be received as the terminate reason
in the optional <code>terminate/3</code> callback.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
normal
</dt>
<dd>
<p>
        The connection was closed normally.
</p>
</dd>
<dt class="hdlist1">
{crash, Class, Reason}
</dt>
<dd>
<p>
        A crash occurred in the handler. <code>Class</code> and <code>Reason</code> can be
        used to obtain more information about the crash. The function
        <code>erlang:get_stacktrace/0</code> can also be called to obtain the
        stacktrace of the process when the crash occurred.
</p>
</dd>
</dl></div>
</div>
</div>
<div class="sect1">
<h2 id="_callbacks">Callbacks</h2>
<div class="sectionbody">
<div class="sect2">
<h3 id="_callback_req_state_8594_value_req_state_stop_req_state">Callback(Req, State) &#8594; {Value, Req, State} | {stop, Req, State}</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Callback
</dt>
<dd>
<p>
One of the REST callbacks described below.
</p>
</dd>
<dt class="hdlist1">
Req = cowboy_req:req()
</dt>
<dd>
<p>
The Req object.
</p>
</dd>
<dt class="hdlist1">
State = any()
</dt>
<dd>
<p>
Handler state.
</p>
</dd>
<dt class="hdlist1">
Value
</dt>
<dd>
<p>
See the REST callbacks description below.
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Please see the REST callbacks description below for details
on the <code>Value</code> type, the default value if the callback is
not defined, and more general information on when the
callback is called and what its intended use is.</p></div>
<div class="paragraph"><p>The <code>stop</code> tuple can be returned to stop REST processing.
It is up to the resource code to send a reply before that,
otherwise a <code>204 No Content</code> will be sent.</p></div>
</div>
</div>
</div>
<div class="sect1">
<h2 id="_rest_callbacks_description">REST callbacks description</h2>
<div class="sectionbody">
<div class="sect2">
<h3 id="_allowed_methods">allowed_methods</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
[binary()]
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
<code>[&lt;&lt;"GET"&gt;&gt;, &lt;&lt;"HEAD"&gt;&gt;, &lt;&lt;"OPTIONS"&gt;&gt;]</code>
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the list of allowed methods.</p></div>
<div class="paragraph"><p>Methods are case sensitive. Standard methods are always uppercase.</p></div>
</div>
<div class="sect2">
<h3 id="_allow_missing_post">allow_missing_post</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
POST
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
true
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether POST is allowed when the resource doesn&#8217;t exist.</p></div>
<div class="paragraph"><p>Returning <code>true</code> here means that a new resource will be
created. The URL to the created resource should also be
returned from the <code>AcceptResource</code> callback.</p></div>
</div>
<div class="sect2">
<h3 id="_charsets_provided">charsets_provided</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
[binary()]
</p>
</dd>
<dt class="hdlist1">
Default behavior
</dt>
<dd>
<p>
Skip to the next step if undefined.
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the list of charsets the resource provides.</p></div>
<div class="paragraph"><p>The list must be ordered in order of preference.</p></div>
<div class="paragraph"><p>If the accept-charset header was not sent, the first charset
in the list will be selected. Otherwise Cowboy will select
the most appropriate charset from the list.</p></div>
<div class="paragraph"><p>The chosen charset will be set in the <code>Req</code> object as the meta
value <code>charset</code>.</p></div>
<div class="paragraph"><p>While charsets are case insensitive, this callback is expected
to return them as lowercase binary.</p></div>
</div>
<div class="sect2">
<h3 id="_content_types_accepted">content_types_accepted</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
POST, PUT, PATCH
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
[{binary() | {Type, SubType, Params}, AcceptResource}]
</p>
</dd>
<dt class="hdlist1">
Default behavior
</dt>
<dd>
<p>
Crash if undefined.
</p>
</dd>
</dl></div>
<div class="paragraph"><p>With types:</p></div>
<div class="ulist"><ul>
<li>
<p>
Type = SubType = binary()
</p>
</li>
<li>
<p>
Params = <em>*</em> | [{binary(), binary()}]
</p>
</li>
<li>
<p>
AcceptResource = atom()
</p>
</li>
</ul></div>
<div class="paragraph"><p>Return the list of content-types the resource accepts.</p></div>
<div class="paragraph"><p>The list must be ordered in order of preference.</p></div>
<div class="paragraph"><p>Each content-type can be given either as a binary string or as
a tuple containing the type, subtype and parameters.</p></div>
<div class="paragraph"><p>Cowboy will select the most appropriate content-type from the list.
If any parameter is acceptable, then the tuple form should be used
with parameters set to <code>'*'</code>. If the parameters value is set to <code>[]</code>
only content-type values with no parameters will be accepted. All
parameter values are treated in a case sensitive manner except the
<code>charset</code> parameter, if present, which is case insensitive.</p></div>
<div class="paragraph"><p>This function will be called for POST, PUT and PATCH requests.
It is entirely possible to define different callbacks for different
methods if the handling of the request differs. Simply verify
what the method is with <code>cowboy_req:method/1</code> and return a
different list for each methods.</p></div>
<div class="paragraph"><p>The <code>AcceptResource</code> value is the name of the callback that will
be called if the content-type matches. It is defined as follows.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
true | {true, URL} | false
</p>
</dd>
<dt class="hdlist1">
Default behavior
</dt>
<dd>
<p>
Crash if undefined.
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Process the request body.</p></div>
<div class="paragraph"><p>This function should create or update the resource with the
information contained in the request body. This information
may be full or partial depending on the request method.</p></div>
<div class="paragraph"><p>If the request body was processed successfully, <code>true</code> must
be returned. If the request method is POST, <code>{true, URL}</code> may
be returned instead, and Cowboy will redirect the client to
the location of the newly created resource.</p></div>
<div class="paragraph"><p>If a response body must be sent, the appropriate media-type, charset
and language can be retrieved using the <code>cowboy_req:meta/{2,3}</code>
functions. The respective keys are <code>media_type</code>, <code>charset</code>
and <code>language</code>. The body can be set using <code>cowboy_req:set_resp_body/2</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_content_types_provided">content_types_provided</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
[{binary() | {Type, SubType, Params}, ProvideResource}]
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
<code>[{{ &lt;&lt;"text"&gt;&gt;, &lt;&lt;"html"&gt;&gt;, '*'}, to_html}]</code>
</p>
</dd>
</dl></div>
<div class="paragraph"><p>With types:</p></div>
<div class="ulist"><ul>
<li>
<p>
Type = SubType = binary()
</p>
</li>
<li>
<p>
Params = <em>*</em> | [{binary(), binary()}]
</p>
</li>
<li>
<p>
ProvideResource = atom()
</p>
</li>
</ul></div>
<div class="paragraph"><p>Return the list of content-types the resource provides.</p></div>
<div class="paragraph"><p>The list must be ordered in order of preference.</p></div>
<div class="paragraph"><p>Each content-type can be given either as a binary string or as
a tuple containing the type, subtype and parameters.</p></div>
<div class="paragraph"><p>Cowboy will select the most appropriate content-type from the list.
If any parameter is acceptable, then the tuple form should be used
with parameters set to <code>'*'</code>. If the parameters value is set to <code>[]</code>
only content-type values with no parameters will be accepted. All
parameter values are treated in a case sensitive manner except the
<code>charset</code> parameter, if present, which is case insensitive.</p></div>
<div class="paragraph"><p>The <code>ProvideResource</code> value is the name of the callback that will
be called if the content-type matches. It will only be called when
a representation of the resource needs to be returned. It is defined
as follow.</p></div>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
iodata() | {stream, Fun} | {stream, Len, Fun} | {chunked, ChunkedFun}
</p>
</dd>
<dt class="hdlist1">
Default behavior
</dt>
<dd>
<p>
Crash if undefined.
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the response body.</p></div>
<div class="paragraph"><p>The response body may be provided directly or through a fun.
If a fun tuple is returned, the appropriate <code>set_resp_body_fun</code>
function will be called. Please refer to the documentation for
these functions for more information about the types.</p></div>
<div class="paragraph"><p>The call to this callback happens a good time after the call to
<code>content_types_provided/2</code>, when it is time to start rendering
the response body.</p></div>
</div>
<div class="sect2">
<h3 id="_delete_completed">delete_completed</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
true
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the delete action has been completed.</p></div>
<div class="paragraph"><p>This function should return <code>false</code> if there is no guarantee
that the resource gets deleted immediately from the system,
including from any internal cache.</p></div>
<div class="paragraph"><p>When this function returns <code>false</code>, a <code>202 Accepted</code>
response will be sent instead of a <code>200 OK</code> or <code>204 No Content</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_delete_resource">delete_resource</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Delete the resource.</p></div>
<div class="paragraph"><p>The value returned indicates if the action was successful,
regardless of whether the resource is immediately deleted
from the system.</p></div>
</div>
<div class="sect2">
<h3 id="_expires">expires</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
calendar:datetime() | binary() | undefined
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
undefined
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the date of expiration of the resource.</p></div>
<div class="paragraph"><p>This date will be sent as the value of the expires header.</p></div>
</div>
<div class="sect2">
<h3 id="_forbidden">forbidden</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether access to the resource is forbidden.</p></div>
<div class="paragraph"><p>A <code>403 Forbidden</code> response will be sent if this
function returns <code>true</code>. This status code means that
access is forbidden regardless of authentication,
and that the request shouldn&#8217;t be repeated.</p></div>
</div>
<div class="sect2">
<h3 id="_generate_etag">generate_etag</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
binary() | {weak | strong, binary()}
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
undefined
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the entity tag of the resource.</p></div>
<div class="paragraph"><p>This value will be sent as the value of the etag header.</p></div>
<div class="paragraph"><p>If a binary is returned, then the value will be parsed
to the tuple form automatically. The value must be in
the same format as the etag header, including quotes.</p></div>
</div>
<div class="sect2">
<h3 id="_is_authorized">is_authorized</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
true | {false, AuthHeader}
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
true
</p>
</dd>
</dl></div>
<div class="paragraph"><p>With types:</p></div>
<div class="ulist"><ul>
<li>
<p>
AuthHead = iodata()
</p>
</li>
</ul></div>
<div class="paragraph"><p>Return whether the user is authorized to perform the action.</p></div>
<div class="paragraph"><p>This function should be used to perform any necessary
authentication of the user before attempting to perform
any action on the resource.</p></div>
<div class="paragraph"><p>If the authentication fails, the value returned will be sent
as the value for the www-authenticate header in the
<code>401 Unauthorized</code> response.</p></div>
</div>
<div class="sect2">
<h3 id="_is_conflict">is_conflict</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
PUT
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the put action results in a conflict.</p></div>
<div class="paragraph"><p>A <code>409 Conflict</code> response will be sent if this function
returns <code>true</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_known_methods">known_methods</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
[binary()]
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
<code>[&lt;&lt;"GET"&gt;&gt;, &lt;&lt;"HEAD"&gt;&gt;, &lt;&lt;"POST"&gt;&gt;, &lt;&lt;"PUT"&gt;&gt;, &lt;&lt;"PATCH"&gt;&gt;, &lt;&lt;"DELETE"&gt;&gt;, &lt;&lt;"OPTIONS"&gt;&gt;]</code>
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the list of known methods.</p></div>
<div class="paragraph"><p>The full list of methods known by the server should be
returned, regardless of their use in the resource.</p></div>
<div class="paragraph"><p>The default value lists the methods Cowboy knows and
implement in <code>cowboy_rest</code>.</p></div>
<div class="paragraph"><p>Methods are case sensitive. Standard methods are always uppercase.</p></div>
</div>
<div class="sect2">
<h3 id="_languages_provided">languages_provided</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
[binary()]
</p>
</dd>
<dt class="hdlist1">
Default behavior
</dt>
<dd>
<p>
Skip to the next step if undefined.
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the list of languages the resource provides.</p></div>
<div class="paragraph"><p>The list must be ordered in order of preference.</p></div>
<div class="paragraph"><p>If the accept-language header was not sent, the first language
in the list will be selected. Otherwise Cowboy will select
the most appropriate language from the list.</p></div>
<div class="paragraph"><p>The chosen language will be set in the <code>Req</code> object as the meta
value <code>language</code>.</p></div>
<div class="paragraph"><p>While languages are case insensitive, this callback is expected
to return them as lowercase binary.</p></div>
</div>
<div class="sect2">
<h3 id="_last_modified">last_modified</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
calendar:datetime()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
undefined
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the date of last modification of the resource.</p></div>
<div class="paragraph"><p>This date will be used to test against the if-modified-since
and if-unmodified-since headers, and sent as the last-modified
header in the response of GET and HEAD requests.</p></div>
</div>
<div class="sect2">
<h3 id="_malformed_request">malformed_request</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the request is malformed.</p></div>
<div class="paragraph"><p>Cowboy has already performed all the necessary checks
by the time this function is called, so few resources
are expected to implement it.</p></div>
<div class="paragraph"><p>The check is to be done on the request itself, not on
the request body, which is processed later.</p></div>
</div>
<div class="sect2">
<h3 id="_moved_permanently">moved_permanently</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
{true, URL} | false
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>With types:</p></div>
<div class="ulist"><ul>
<li>
<p>
URL = iodata()
</p>
</li>
</ul></div>
<div class="paragraph"><p>Return whether the resource was permanently moved.</p></div>
<div class="paragraph"><p>If it was, its new URL is also returned and sent in the
location header in the response.</p></div>
</div>
<div class="sect2">
<h3 id="_moved_temporarily">moved_temporarily</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
{true, URL} | false
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>With types:</p></div>
<div class="ulist"><ul>
<li>
<p>
URL = iodata()
</p>
</li>
</ul></div>
<div class="paragraph"><p>Return whether the resource was temporarily moved.</p></div>
<div class="paragraph"><p>If it was, its new URL is also returned and sent in the
location header in the response.</p></div>
</div>
<div class="sect2">
<h3 id="_multiple_choices">multiple_choices</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether there are multiple representations of the resource.</p></div>
<div class="paragraph"><p>This function should be used to inform the client if there
are different representations of the resource, for example
different content-type. If this function returns <code>true</code>,
the response body should include information about these
different representations using <code>cowboy_req:set_resp_body/2</code>.
The content-type of the response should be the one previously
negociated and that can be obtained by calling
<code>cowboy_req:meta(media_type, Req)</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_options">options</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
OPTIONS
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
ok
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
ok
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Handle a request for information.</p></div>
<div class="paragraph"><p>The response should inform the client the communication
options available for this resource.</p></div>
<div class="paragraph"><p>By default, Cowboy will send a <code>200 OK</code> response with the
allow header set.</p></div>
</div>
<div class="sect2">
<h3 id="_previously_existed">previously_existed</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the resource existed previously.</p></div>
</div>
<div class="sect2">
<h3 id="_resource_exists">resource_exists</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
true
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the resource exists.</p></div>
<div class="paragraph"><p>If it exists, conditional headers will be tested before
attempting to perform the action. Otherwise, Cowboy will
check if the resource previously existed first.</p></div>
</div>
<div class="sect2">
<h3 id="_service_available">service_available</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
true
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the service is available.</p></div>
<div class="paragraph"><p>This function can be used to test that all relevant backend
systems are up and able to handle requests.</p></div>
<div class="paragraph"><p>A <code>503 Service Unavailable</code> response will be sent if this
function returns <code>false</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_uri_too_long">uri_too_long</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
false
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the requested URI is too long.</p></div>
<div class="paragraph"><p>Cowboy has already performed all the necessary checks
by the time this function is called, so few resources
are expected to implement it.</p></div>
<div class="paragraph"><p>A <code>414 Request-URI Too Long</code> response will be sent if this
function returns <code>true</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_valid_content_headers">valid_content_headers</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
true
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the content-* headers are valid.</p></div>
<div class="paragraph"><p>This also applies to the transfer-encoding header. This
function must return <code>false</code> for any unknown content-*
headers, or if the headers can&#8217;t be understood. The
function <code>cowboy_req:parse_header/2</code> can be used to
quickly check the headers can be parsed.</p></div>
<div class="paragraph"><p>A <code>501 Not Implemented</code> response will be sent if this
function returns <code>false</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_valid_entity_length">valid_entity_length</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
all
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
boolean()
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
true
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return whether the request body length is within acceptable boundaries.</p></div>
<div class="paragraph"><p>A <code>413 Request Entity Too Large</code> response will be sent if this
function returns <code>false</code>.</p></div>
</div>
<div class="sect2">
<h3 id="_variances">variances</h3>
<div class="dlist"><dl>
<dt class="hdlist1">
Methods
</dt>
<dd>
<p>
GET, HEAD, POST, PUT, PATCH, DELETE
</p>
</dd>
<dt class="hdlist1">
Value type
</dt>
<dd>
<p>
[binary()]
</p>
</dd>
<dt class="hdlist1">
Default value
</dt>
<dd>
<p>
[]
</p>
</dd>
</dl></div>
<div class="paragraph"><p>Return the list of headers that affect the representation of the resource.</p></div>
<div class="paragraph"><p>These request headers return the same resource but with different
parameters, like another language or a different content-type.</p></div>
<div class="paragraph"><p>Cowboy will automatically add the accept, accept-language and
accept-charset headers to the list if the respective functions
were defined in the resource.</p></div>
<div class="paragraph"><p>This operation is performed right before the <code>resource_exists/2</code>
callback. All responses past that point will contain the vary
header which holds this list.</p></div>
</div>
</div>
</div>



</div>

<div class="span3 sidecol">


<h3>
	Cowboy
	2.0
	Function Reference
	
</h3>

<ul>
	
		<li><a href="/docs/en/cowboy/2.0/guide">User Guide</a></li>
	
	
		<li><a href="/docs/en/cowboy/2.0/manual">Function Reference</a></li>
	
	
</ul>

<h4 id="docs-nav">Navigation</h4>

<h4>Version select</h4>
<ul>
	
	
	
		<li><a href="/docs/en/cowboy/1.0/manual">1.0</a></li>
	
		<li><a href="/docs/en/cowboy/2.0/manual">2.0</a></li>
	
</ul>

</div>
</div>
</div>
</div>

      <footer>
        <div class="container">
          <div class="row">
            <div class="span6">
              <p id="scroll-top"><a href="#">↑ Scroll to top</a></p>
              <nav>
                <ul>
                  <li><a href="mailto:[email protected]" title="Contact us">Contact us</a></li><li><a href="https://github.com/ninenines/ninenines.github.io" title="Github repository">Contribute to this site</a></li>
                </ul>
              </nav>
            </div>
            <div class="span6 credits">
               <p><img src="/img/footer_logo.png"></p>
               <p>Copyright &copy; Loïc Hoguin 2012-2016</p>
            </div>
          </div>
        </div>
      </footer>

    
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script src="/js/bootstrap-carousel.js"></script>
    <script src="/js/bootstrap-dropdown.js"></script>
    <script src="/js/custom.js"></script>
  </body>
</html>