You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems Phabulous only supports the (old-style) feed.http-hooks hooks, which are unauthenticated and go over http (not https).
This works fine when running your own Phabricator instance on the same host as Phabulous (you make Phabulous listen only on localhost and make Phabricator connect to localhost:XXXX) but not when using a (Phacility or otherwise) hosted Phabricator instance: the POST request from Phabricator would go through http (not https) over the public Internet; also Phabulous cannot authenticate that it came from the right place.
It seems Phabulous only supports the (old-style)
feed.http-hooks
hooks, which are unauthenticated and go over http (not https).This works fine when running your own Phabricator instance on the same host as Phabulous (you make Phabulous listen only on
localhost
and make Phabricator connect tolocalhost:XXXX
) but not when using a (Phacility or otherwise) hosted Phabricator instance: the POST request from Phabricator would go through http (not https) over the public Internet; also Phabulous cannot authenticate that it came from the right place.In February 2018, Phabricator added webhooks, which are hashed with a secret shared between Phabricator and the webhook: https://secure.phabricator.com/book/phabricator/article/webhooks/ (This is similar to Github's webhooks: https://developer.github.com/webhooks/securing/)
Are there any plans to add support for Phabricator webhooks to Phabulous?
The text was updated successfully, but these errors were encountered: