#omar_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/1288538711134310493
đ Have more to share? Add more details, code, screenshots, videos, etc. below.
I apologize in advance if this is the wrong tag for the question. I couldn't find a more suitable one for "Stripe Apps"
Hello! Can you provide more details? What do you mean by update, exactly?
Once I have made a change in the code (such as updating the oauth logic) and want to view in the uploaded version since that prompts me for the oauth process. What command should I use?
All you should need to do is update the version and then upload that new version: https://docs.stripe.com/stripe-apps/versions-and-releases#upload-version
I have done that but I till got:
Request failed, status=400, body={
"error": {
"message": "3:App id already taken: com.disputes.safe-charges",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_xDcVq8x4KTMwjM?t=1727282289",
"type": "invalid_request_error"
}
}
What is the exact command you used?
Which makes me thing something other is wrong since it should be as easy as changing the version
stripe apps upload
What is the distribution_type set to in your manifest?
It's set to "public".
Having it private works but I want it to be public to test the oauth from another account
Ah, so you're trying to upload this to a different account in public with an app ID that's already been used on another account? If so that won't work, and the error you're seeing is expected.
You'll likely need to contact Stripe support to get the app removed from the other account and unpublished before you can use the app ID on your account.
Is it uploaded onto another account? Because when I change the ID in the manifest it gives me:
{
"error": {
"message": "9:App developer account already has a public app. Cannot create another public app.",
"request_log_url": "https://dashboard.stripe.com/test/logs/req_I5x6kUK49R1gPs?t=1727282779",
"type": "invalid_request_error"
}
}
Implying that the old one I tried changing the version for is of this account's and not another's.
Or is it still (the old ID) an app made from another account and linked with this one somehow and I need to either delete it from their or uninstall it from here before uploading a new one?
Each account can only have a single public app, so that's why you're getting that error. I think your best bet is to contact support, explain in detail what the situation is, all of the accounts involved, and they can help you get into the state you're looking for: https://support.stripe.com/contact/email
I'll see what I can do there
Good luck with it!