#meloscr_webhooks
1 messages ยท Page 1 of 1 (latest)
๐ Welcome to your new thread!
โฒ๏ธ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
โฑ๏ธ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
๐ This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1278327518566551552
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
hi there!
this is covered here: https://docs.stripe.com/webhooks#manual-retries
I don't finding
that doc says that after 15 days, the only option is to use the Stripe CLI: https://docs.stripe.com/cli/events/resend
But my project is in production
you can resend livemode requests with the CLI. just make sure to use the --live flag.
{
"error": {
"message": "The provided key 'rk_live_***************************************************************************************7LqzWY' does not have the required permissions for this endpoint on account 'acct_1P5'. Please use a different key to perform this action.",
"type": "invalid_request_error"
}
}
can you share the command you ran?
stripe events resend evt_1PlYydDYKqU0SNyZaQfoO7EQ --live
looking into this
you could try setting your secret key with the --api-key flag mentioned here https://docs.stripe.com/cli/api_keys
Now is sending that
{
"error": {
"message": "No CLI endpoints found to retry delivery. Run 'stripe listen' and retry the request to see the event in the CLI, or provide a specific webhook endpoint.",
"param": "for_stripecli",
"type": "invalid_request_error"
}
}
you forgot to set this parameter: https://docs.stripe.com/cli/events/resend#events_resend-webhook-endpoint
Great, now is working!
happy to help ๐
Wait
Now in my production machine return that message [Error]: The provided key 'sk_live_***********************************************************************************************NPFh' does not have access to account 'acct_Ps7fTRdKy11vZmK' (or that account does not exist). Application access may have been revoked.
But that key is my main secret key
the account acct_Ps7fTRdKy11vZmK doesn't exist. did you made a typo?
this is not the same account ID
in your url is start with acct_1
the one you shared starts with acct_P
Ow yeah, i will correct, one moment