Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

227
Views
Redirección de Deep Link y Stripe

Así que estoy tratando de redirigir mi aplicación nativa de reacción desde una página de pago de franjas a la aplicación.

 app.post('/create-checkout-session', async (req, res) => { const prices = await stripe.prices.list({ lookup_keys: [req.body.lookup_key], expand: ['data.product'], }); const session = await stripe.checkout.sessions.create({ billing_address_collection: 'auto', line_items: [ { price: prices.data[0].id, // For metered billing, do not pass quantity quantity: 1, }, ], mode: 'subscription', success_url: `${YOUR_DOMAIN}/?success=true&session_id={CHECKOUT_SESSION_ID}`, cancel_url: `${YOUR_DOMAIN}?canceled=true`, }); res.redirect(303, session.url); });

utilizando la URL de éxito, pero no se redirigirá a la aplicación. Actualmente estoy usando React Navigation, Deep Linking en el archivo App.js.

 const linking = { prefixes: [ Linking.createURL("hometrack://")], config:{ screens:{ EmployeeSignUp:{ path:"EmployeeSignUp/:id", parse: { id: (id) => `${id}`, }, }, Success:{ path:"Success" } } } };

Parece que no puedo hacer que se vincule de nuevo a la aplicación.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!