Class: CyberbizExpress::NinjaVan::Webhook

Inherits:
Object
  • Object
show all
Defined in:
lib/cyberbiz_express/ninja_van/webhook.rb

Instance Method Summary collapse

Instance Method Details

#decode_webhook_payload(webhook_payload) ⇒ Object



9
10
11
12
# File 'lib/cyberbiz_express/ninja_van/webhook.rb', line 9

def decode_webhook_payload(webhook_payload)
  hash = OpenSSL::HMAC.digest('sha256', CyberbizExpress::NinjaVan.client_secret, webhook_payload)
  Base64.encode64(hash)
end