?wc-api=wc_stripe

# server.rb
#
# Use this sample code to handle webhook events in your integration.
#
# 1) Paste this code into a new file (server.rb)
#
# 2) Install dependencies
#   gem install sinatra
#   gem install stripe
#
# 3) Run the server on http://localhost:4242
#   ruby server.rb

require 'json'
require 'sinatra'
require 'stripe'

# The library needs to be configured with your account's secret key.
# Ensure the key is kept out of any version control system you might be using.
Stripe.api_key = 'sk_test_...'

# This is your Stripe CLI webhook secret for testing your endpoint locally.
endpoint_secret = 'whsec_51d1a0037372550646330900a656549ef60f22ffd0149e2fea11105ebd2d3cbf'

set :port, 4242

post '/webhook' do
    payload = request.body.read
    sig_header = request.env['HTTP_STRIPE_SIGNATURE']
    event = nil

    begin
        event = Stripe::Webhook.construct_event(
            payload, sig_header, endpoint_secret
        )
    rescue JSON::ParserError => e
        # Invalid payload
        status 400
        return
    rescue Stripe::SignatureVerificationError => e
        # Invalid signature
        status 400
        return
    end

    # Handle the event
    case event.type
    when 'account.updated'
        account = event.data.object
    when 'account.external_account.created'
        external_account = event.data.object
    when 'account.external_account.deleted'
        external_account = event.data.object
    when 'account.external_account.updated'
        external_account = event.data.object
    # ... handle other event types
    else
        puts "Unhandled event type: #{event.type}"
    end

    status 200
end
0
Passer 50,00  plus pour obtenir gratuit FR expédition
Votre Panier est vide!

Il semble que vous n'avez pas ajouté des articles à votre panier encore.

Parcourir Les Produits