Slide 40
Slide 40 text
24 / 31
Web Share Target API POST
の場合
` `
1 // manifest.json
2 {
3 "share_target": {
4 "action": "/receiver/",
5 "method": "POST",
6 "enctype": "multipart/form-data",
7 "params": {
8 "title": "name",
9 "text": "description",
1 curl 'https://example.com/receiver/' \
2 --form 'name="foo"' \
3 --form 'description="bar"' \
4 --form 'link="https://example.com"' \
5 --form 'files=@"/path/to/file.csv"'