Correct Stripe setup claims: webhook secret, not OAuth - #18
Merged
Conversation
The site claimed Stripe connects with one-click OAuth and no webhook secrets. The shipped app flow is the opposite: the user creates a webhook endpoint in the Stripe Dashboard and pastes the whsec_ signing secret. Only Shopify is a true OAuth connect. Fixes the homepage integrations copy and hero subtitle, the Stripe integration page (description, card, intro, trust line, steps, FAQ), the SoftwareApplication schema feature list, and llms.txt. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The site claimed "Stripe and Shopify connect with one-click OAuth — no webhook secrets to copy." Verified against the app code (
app/core/views/integrations/stripe.py,integrate_stripe.html.j2): the shipped Stripe flow is manual — the user creates a webhook endpoint in the Stripe Dashboard and pastes thewhsec_signing secret. There is no Stripe Connect OAuth route or view (only leftover env-var stubs; the app README describes it aspirationally). Shopify is a genuine OAuth connect with automatic webhook creation; Maxio is a pasted webhook secret.Changes
Not addressed
static/videos/onboarding.vttcaptions the screencast with "Stripe connected with one click — no webhook setup". If the video shows the old flow, it needs re-recording; the caption should stay in sync with the footage, so I left it untouched.Testing
bun run lintandbun run format:checkpass🤖 Generated with Claude Code