#buh-la-key_code
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/1222971236087496817
๐ Have more to share? Add more details, code, screenshots, videos, etc. below.
Can you share which version of the stripe-java sdk you're using?
Using Stripe version 1.19.2 and openjdk 17.0.6
Are you sure you're using 1.19.2 ? I don't see that anywhere in out listed versions (https://github.com/stripe/stripe-java/blob/v24.22.0-beta.1/CHANGELOG.md)
When I enter the command stripe --version on the command line that is what I get. Is there another way I should be checking?
That's the CLI version - if you want the version of the stripe-java SDK you can add System.out.println(Stripe.VERSION); to your code
Version 17.0.0
Yeah it's not working because you're on an older version - I think you need to be on a version after 19.10.0 https://github.com/stripe/stripe-java/blob/v24.22.0-beta.1/CHANGELOG.md#19100---2020-05-11
Ok thank you! While I'm here do you know if the stripe version corresponds with the java version? For instance since our project is running on java 17 would we have to upgrade to at least java 19 to upgrade to stripe 19?
No, they're not related ๐
Ok great, thank you so much for your help I really appreciate it!