以下のことは可能でしょうか?
- URL を指定して Filepicker.io に画像をアップロードする
- cURL経由で行う
これらのいずれかについて言及しているドキュメントが見つかりません
以下のことは可能でしょうか?
これらのいずれかについて言及しているドキュメントが見つかりません
はい、これは可能です:
>>> curl -X POST -F fileUpload=@filename.txt https://www.filepicker.io/api/store/S3?key=MY_API_KEY
{"url": "https://www.filepicker.io/api/file/WmFxB2aSe20SGT2kzSsr", "size": 234, "type": "text/plain", "filename": "tester.txt", "key": "1ilWxmaRRqhMd2vSbSyB_tester.txt"}
また
>>> curl -X POST -d url="https://www.filepicker.io/static/img/watermark.png" https://www.filepicker.io/api/store/S3?key=MY_API_KEY
{"url": "https://www.filepicker.io/api/file/N49i6hPRBeropWnCWOLw", "size": 8331, "type": "image/png", "filename": "watermark.png", "key": "a1RyBxiglW92bS2SRmqM_watermark.png"}
https://developers.filepicker.io/docs/web/#fpurl-storeの完全なドキュメント