travisf
I’m working through this tutorial trying to get payments working with Stripe.
I’ve implemented a Stripe webhook handler:
defmodule Postbox.StripeHandler do
@behaviour Plug
alias Plug.Conn
def init(config), do: config
def call(%{request_path: "/webhook/payments"} = conn, _params) do
signing_secret = Application.get_env(:stripity_stripe, :webhook_key)
[stripe_signature] = Plug.Conn.get_req_header(conn, "stripe-signature")
with {:ok, body, _} = Plug.Conn.read_body(conn),
{:ok, stripe_event} =
Stripe.Webhook.construct_event(body, stripe_signature, signing_secret) do
Plug.Conn.assign(conn, :stripe_event, stripe_event)
else
err ->
conn
|> Conn.send_resp(:bad_request, err)
|> Conn.halt()
end
end
end
I’ve copied my webhook secret (:webhook_key directly from the signing secret) but I’m still, continuously getting this error from Stripe: ** (MatchError) no match of right hand side value: {:error, "No signatures found matching the expected signature for payload"}.
This is a test account and I’m using Ngrok for the Webhook address.
Initial question aside I’m wondering if I’m just using Stripe.Checkout.Session do I need to even bother with Webhooks? Willl Stripe returning a successful URL be sufficient?
Trending in Questions
Hello!
Suppose you are building workflow (order / task / payment) processing system with the following requirements:
Each workflow con...
New
I’m in search of an Elixir library that offers PDF generation capabilities similar to Ruby’s Prawn. While there have been discussions abo...
New
I’m looking to build a personal workflow to quickly deploy web applications written in elixir/phoenix, for local consumption (ie not on t...
New
Using Phoenix.LiveView.TagEngine as an EEx.Engine is deprecated!
To compile HEEx, use Phoenix.LiveView.TagEngine.compile/2 instead.
Sta...
New
Before I dive in myself, did anyone successfully sprinkle Hologram into their existing LiveView app?
Looking for hints regarding:
Addi...
New
Hi all, I wanted to ask how the community is dealing with post-release steps.
Today we have Ecto migrations, which make sure that the db...
New
I am using Oban and occasionally, shortly after a deployment, a handful of jobs can fail because of dependency on other parts of the syst...
New
Other Trending Topics
Hey, I’m Jesse and I’m the main contributor behind Dexter, a full-featured, lightning-fast Elixir LSP optimized for large codebases. It s...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Emily is an Elixir library that runs Nx computations on Apple’s MLX. Install it as the default Nx backend and Nx, defn, Axon, Nx.Serving,...
New
I just stumbled on a newly redesigned elixir-lang.org. :tada: It looks like @Software_Mansion did the work, and I think it is generally a...
New
There has been a thread to discuss the Stack Overflow Developer Survey on this forum every year since 2018, so here’s yet another one for...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #genstage
- #ai
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #hex
- #performance










First 10 of 16 Posts
al2o3cr
I don’t believe it’s directly related to your issue, but note that there’s a specific callout in the docs for
Plug.Conn.read_bodysaying NOT to discard theconn:dimitarvp
Never ignore a returned
conn, that’s the new state you must use from then on! Start with that.…Oh, I see @al2o3cr beat me to it.
travisf
Thanks for pointing that out, I will be sure to use the new conn!
That said I don’t think this is causing the issue, I should have been more clear I believe the
withchain is failing atStripe.Webhook.construct_event(body, stripe_signature, signing_secret). It seems like a simple authentication error but I have checked the:webhook_key/:signing_secretand it’s the one from stripe.mize85
When is your plug called?
I think it has to run before all other parsers (plug Plug.Parsers in endpoint.ex) that may change the body, to verify the body as received from stripe.
al2o3cr
The code you posted matches what’s in the
stripity_stripedocs, so the next thing to check is all the inputs. At least one ofsigning_secret,stripe_signature, orbodyisn’t getting the value thatconstruct_eventis expecting.One thing I’d particularly watch out for is “test mode” vs “production mode”; IIRC the test mode uses a different signing secret.
Lucassifoni
You need to access the body before it has been modified by a subsequent Plug.
Here is an example in Plug.Parsers docs that exposes this very use case
Edit : note that you can also do that with a custom Parser that runs before other Plug.Parsers. You can pattern match on the request path if you wish to avoid copying the raw body for other kind of requests.
Check for exhaustiveness with the docs, because I cannot verify it today.
After that, the
%{raw_body: r}map gets merged intoconn.params. You can access it by pattern matching on conn.params in your controller.def handle_webhook(%{params: %{raw_body: raw_body}} = conn, params) doThere are many ways to get to the desired result, but the goal is the same : preserve the raw request body.
travisf
I saw that but if you have
plug App.StripeHandlerbeforeplug Plug.Parserswouldn’t that resolve the issue without writing a custom parser?For what it’s worth: the payload from
Plug.Conn.read_body(conn)looks like:Essentially just stringifyed JSON. Should it be raw JSON?
wojtekmach
This blog post might be helpful: https://dashbit.co/blog/how-we-verify-webhooks.
focused
Look at the tutorial for
stripity_stripe: https://tolc.io/blog/stripe-with-elixir-and-phoenixMaybe you don’t need to implement a plug at all because it’s already implemented in the package? Just use the behaviours in your handler
@behaviour Stripe.WebhookHandler.Yes, you need to handle the event after the checkout like I did for setup payment methods:
It’s required to handle all checkout session events. Look at the Stripe API and handle your events according to entity statuses and event types.
In my case I needed to handle the “checkout.session.completed” and then update some payment method fields in the DB to make it active in my system.
Session object API
You should look at the events you need https://docs.stripe.com/api/events/types#event_types-checkout.session.async_payment_failed and handle them as you want, e.g. update a
Paymentschema entity status.I would not rely on synchronous API responses only and strongly advice to handle events in a webhook.
P.S.: some useful docs and recommendations about using webhooks - Receive Stripe events in your webhook endpoint | Stripe Documentation
travisf
Thanks! The Tolc tutorail was one of several I worked off of. I’ve gutted everything I’ve done on this and copied from their tutorial directly and this is the result whenever I call the webhook in Stripe:
There seems to be two problems here first is that there is no route for
/webhook/paymentswhich is not specified in the tutorial.The second (related?) problem is with parsing the response, I assume if it was reaching the correct endpoint this wouldn’t be a problem (assuming everything else works correctly)?
Sorry for my slow response, I’ve been moving and this is a side project.