I am trying to create a Webhook via the Ruby gem and I'm getting conflicting failure errors.
The first time through:
ShopifyAPI::Webhook.create(topic: "products/update", address: "
http://example.com", format: "json")
This fails with: @messages={:address=>["is not allowed"]}
The second time through, sans address:
ShopifyAPI::Webhook.create(topic: "products/update", format: "json")
This fails with: @messages={:address=>["can't be blank"]}
I would definitely expect address to be required, so maybe I'm not formatting the address properly and the "is not allowed" error message is too vague for me to be sure?
Any help would be much appreciated!