我很高兴知道如何使用 file picker.io 通过 post 方法将单个 mp3 文件传递给 php
问问题
608 次
2 回答
1
是的,这是可能的:
>>> 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上的完整文档
于 2013-03-21T21:17:08.093 回答
0
我认为当您使用 datepicker.io 时,所选文件会自动存储在 datepicker 服务器中。然后,您可以从公共 url 读取文件(API 在响应中提供公共 url)并存储它(例如使用 CURL?)
于 2013-03-20T16:19:09.533 回答