We’re Still Here to Help (Even Over the Holidays!) - find out more here.
Forum Discussion
ytechie
9 years agoNew member | Level 2
Byte order marks on challenge response
I set up a Node.js server to respond to the API challange request for a webhook. I can't seem to get it to accept the challenge. I can't tell if it's appending byte order marks, or if Node.js is secr...
- 9 years ago
It was an issue specific to Azure Functions. The fix was to use a content type of "application/octet-stream".
Here is code that I confirmed works with dropbox:
res = { body: challenge, headers: { 'Content-Type': 'application/octet-stream' } };
Greg-DB
Dropbox Community Moderator
9 years agoThe Dropbox webhook challenge string doesn't contain a BOM, so the Dropbox webhooks service doesn't expect one in the echoed string. That being the case, it does look like something on your side is adding it.
Unfortunately, that sounds like an issue with Node or your code itself, so I'm afraid I can't offer much insight. Perhaps someone else here is familiar with it though and can help if you share your code.
ytechie
9 years agoNew member | Level 2
It was an issue specific to Azure Functions. The fix was to use a content type of "application/octet-stream".
Here is code that I confirmed works with dropbox:
res = {
body: challenge,
headers: {
'Content-Type': 'application/octet-stream'
}
};About Dropbox API Support & Feedback
Find help with the Dropbox API from other developers.
The Dropbox Community team is active from Monday to Friday. We try to respond to you as soon as we can, usually within 2 hours.
If you need more help you can view your support options (expected response time for an email or ticket is 24 hours), or contact us on X, Facebook or Instagram.
For more info on available support options for your Dropbox plan, see this article.
If you found the answer to your question in this Community thread, please 'like' the post to say thanks and to let us know it was useful!