filepicker.io webhook not happening -


i setup webhook in filepicker.io's webhook page, saved url (e.g., mydomain.com/upload-hook) , proceed upload file , tail log files watching request node endpoint console.log request object see if filepicker.io, nothing.

i try using curl status of file uploads , saying "file not found" using this:

curl -x https://www.filepicker.io/api/file/my_api_key/video_convert/status?uuid=22ae147492ab72a0a3cb110a4d0046cd

really need hints on if can help! thx in advance.

to check status of video, need use filelink, not api key (same thing applies first post action starts conversion process). example, if file want convert is

https://www.filepicker.io/api/file/zvlc5jejqhwqfabcdefg

first need do:

curl -x post "https://www.filepicker.io/api/file/zvlc5jejqhwqfabcdefg/video_convert?height=260&width=300&preset=webm" 

you'll receive response looking this:

{"uuid":"ff18d687bd34c9c03bb303b585512345","timestamp":"1434359559","data":{},"status":"started"} 

to check conversion status:

curl -x "https://www.filepicker.io/api/file/zvlc5jejqhwqfabcdefg/video_convert/status?uuid=ff18d687bd34c9c03bb303b585512345" 

i did test using requestb.in create webhook url , received webhook when video converted.

please let me know if helps.


Comments

Popular posts from this blog

c# - Validate object ID from GET to POST -

node.js - Custom Model Validator SailsJS -

php - Find a regex to take part of Email -