TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Webhooks: The Devil in the Details

53 pointsby cnjover 8 years ago

3 comments

vertex-fourover 8 years ago
So part of the issue here is that many message queue systems have rather terrible authentication, certain cloud-hosted systems aside - it often seems to be that authentication allows you to post any message you like and listen on any queue you like. A message queue designed for external entities to access would require far more rigorous security mechanisms.<p>I&#x27;d also suggest that it would want some form of federation - so instead of external entities pushing directly into your message queue, they&#x27;d push to theirs, and your message queue would pull from theirs and push to your consumers. That way, you don&#x27;t lose messages from your provider when your connection to them fails.
评论 #13132187 未加载
fiatjafover 8 years ago
It is not as easy to get some thing running with a message queue as it is with webhooks. The API documentation would be complicated and large, also special libraries would be needed.
jlward4thover 8 years ago
Or a more simple solution... Have a webhook receiver send the messages to Kafka. Then you don&#x27;t have to change to a more complex delivery protocol.
评论 #13132051 未加载