Apple Developer Program

RSS for tag

Create and deliver software for users around the world on Apple platforms using the the tools, resources, and support included with Apple Developer Program membership.

Apple Developer Program Documentation

Posts under Apple Developer Program subtopic

Post

Replies

Boosts

Views

Activity

Typo: "Enteprise"
This typo appears in a two docs I can find. Is there a better way to notify Apple about this, than making a post here> https://developer.apple.com/help/account/membership/program-enrollment/ https://developer.apple.com/documentation/enterpriseprogramapi/users Also appears in some legacy docs, but that probably matters less: https://developer.apple.com/library/archive/documentation/LegacyTechnologies/WebObjects/WebObjects_4.0/System/Library/Frameworks/EOControl.framework/Resources/English.lproj/Documentation/Reference/Java/EOControl.Java.pdf
2
0
84
Nov ’25
It takes a long time to create a developer account as a company.
We registered as a developer company (NGO) more than 50 days ago and it's still under review. We've already sent the documents, we've confirmed by phone, and every time we contact them we receive no information. They just tell us it's under review and there's no deadline for when this review will be completed. On the same day we registered with Apple, we registered with Google and our app has been published on Google for more than 30 days. We have no support or answers. Could someone help us to at least know a deadline for this review?
2
1
89
2w
Can't enrol to Apple Developer Program
Hi, I'm from India and payment has been deducted for the membership and I have received an email confirming my subscription of the program but I still cannot access my enrolment dashboard. It says "You'll receive an email soon" in my Apple Developer app under "Enrol" and it says Pending on my Apple Account on web. I don't understand why such as a small task is such a problematic thing for Apple. Need help understanding what's going on.
2
1
95
Nov ’25
IOS Development Certificates are being created under the incorrect Team ID
I am experiencing a critical issue with the IOS Development Portal where certificates are being created under the incorrect Team ID despite being logged into the correct team context. in the Portal also in Xcode. I am logged into the Apple Developer Portal under "Company LLC (Team ID: 12345678)" However, when creating "Apple Development" certificates through the portal, they are being assigned Team ID "987654321" (my personal developer account) This occurs even when explicitly creating certificates from within the Company LLC team context. Also the same if i create the IOS Development in Xcode as well. This is preventing me from Archive my app in Xcode so i can upload the new version in the App Store. Please Help. Thank you in advance.
2
0
119
Oct ’25
Unable to Process Developer Program Payment – Case #102708816548
Hello Apple Developer Community, We’ve been attempting to pay the Apple Developer Program enrollment fee for several weeks. Despite trying multiple browsers, credit cards, and devices, the payment consistently fails to process. We also receive an error when trying to add a card to our profile. We've contacted support multiple times and have been assigned case number 102708816548, but the issue remains unresolved. Additionally, we’ve been unable to submit a support request via developer.apple.com/support — the site either fails to load the form or does not allow us to proceed with a phone or email request. This has made it extremely difficult to escalate the issue through official channels. We are a verified business and have followed all instructions provided by support. We’re now seeking help through the forums in hopes of escalating this issue or connecting with someone who has resolved a similar problem. Any guidance or suggestions would be greatly appreciated.
2
0
168
2w
Apple pay processing payment fail
Hey, I am trying to implement the apple pay process pay backend service, I have checked everything and somehow it fails. I only have 1 certificate for merchant and 1 for the apple pay process, I have the private keys and try to run this following code that fails - import crypto from 'crypto'; import fs from 'fs'; import forge from 'node-forge'; const MERCHANT_ID_FIELD_OID = '1.2.840.113635.100.6.32'; function decryptedToken() { const token = ""; const ephemeralPublicKey = ""; const encryptedData = ""; //=================================== // Import certs //=================================== const epk = Buffer.from(ephemeralPublicKey, 'base64'); const merchantCert = fs.readFileSync('merchant_full.pem', 'utf8') const paymentProcessorCert = fs.readFileSync("apple_pay_private.pem"); //=================================== let symmetricKey = ''; try { symmetricKey = restoreSymmetricKey(epk, merchantCert, paymentProcessorCert); } catch (err) { throw new Error(`Restore symmetric key failed: ${err.message}`); } try { //----------------------------------- // Use the symmetric key to decrypt the value of the data key //----------------------------------- const decrypted = JSON.parse(decryptCiphertextFunc(symmetricKey, encryptedData)); console.log("Decrypted Token:", decrypted); // const preppedToken = prepTabaPayToken(token, decrypted) //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Send decrypted token back to frontend //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // res.send(preppedToken); } catch (err) { throw new Error(`Decrypt cipher data failed: ${err.message}`); } } // extractMerchantID - const extractMerchantID = (merchantCert) => { //=================================== // Extract merchant identification from public key certificate //=================================== try { const info = forge.pki.certificateFromPem(merchantCert); const result = info['extensions'].filter(d => d.id === MERCHANT_ID_FIELD_OID); //----------------------------------- // Return //----------------------------------- return result[0].value.toString().substring(2); } catch (err) { throw new Error(Unable to extract merchant ID from certificate: ${err}); } } // generateSharedSecret - const generateSharedSecret = (merchantPrivateKey, ephemeralPublicKey) => { //=================================== // Use private key from payment processing certificate and the ephemeral public key to generate // the shared secret using Elliptic Curve Diffie*Hellman (ECDH) //=================================== const privateKey = crypto.createPrivateKey({ key: merchantPrivateKey, format: "pem", type: "sec1", // because it's "EC PRIVATE KEY" }); const publicKey = crypto.createPublicKey({ key: ephemeralPublicKey, format: 'der', type: 'spki' }); //----------------------------------- // Return //----------------------------------- return crypto.diffieHellman({privateKey,publicKey: publicKey,}); //----------------------------------- } // getSymmetricKey - const getSymmetricKey = (merchantId, sharedSecret) => { //=================================== // Get KDF_Info as defined from Apple Pay documentation //=================================== const KDF_ALGORITHM = '\x0didaes256GCM'; const KDF_PARTY_V = Buffer.from(merchantId, 'hex').toString('binary'); const KDF_PARTY_U = 'Apple'; const KDF_INFO = KDF_ALGORITHM + KDF_PARTY_U + KDF_PARTY_V; //----------------------------------- // Create hash //----------------------------------- const hash = crypto.createHash('sha256'); hash.update(Buffer.from('000000', 'hex')); hash.update(Buffer.from('01', 'hex')); hash.update(Buffer.from(sharedSecret, 'hex')); hash.update(KDF_INFO, 'binary'); //----------------------------------- // Return //----------------------------------- return hash.digest('hex'); //----------------------------------- } // restoreSymmetricKey - const restoreSymmetricKey = (ephemeralPublicKey, merchantCert, paymentProcessorCert) => { //=================================== // 3.a Use the payment processor private key and the ephemeral public key, to generate the shared secret //=================================== const sharedSecret = generateSharedSecret(paymentProcessorCert, ephemeralPublicKey); //----------------------------------- // 3.b Use the merchant identifier of the public key certificate and the shared secret, to derive the symmetric key //----------------------------------- const merchantId = extractMerchantID(merchantCert); //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Return //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ console.log("Merchant ID:", merchantId); console.log("Shared Secret (hex):", sharedSecret); return getSymmetricKey(merchantId, sharedSecret); //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ } // decryptCiphertextFunc - const decryptCiphertextFunc = (symmetricKey, encryptedData) => { console.log("🔑 Decrypting Ciphertext with Symmetric Key:", symmetricKey); //=================================== // Get symmetric key and initialization vector //=================================== const buf = Buffer.from(encryptedData, 'base64'); const SYMMETRIC_KEY = Buffer.from(symmetricKey, 'hex'); const IV = Buffer.from([0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]); // Initialization vector of 16 null bytes const CIPHERTEXT = buf.slice(0, -16); //----------------------------------- // Create and return a Decipher object that uses the given algorithm and password (key) //----------------------------------- const decipher = crypto.createDecipheriv("aes-256-gcm", SYMMETRIC_KEY, IV); const tag = buf.slice(-16, buf.length); decipher.setAuthTag(tag); //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ // Load encrypted token into Decipher object //~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ let decrypted = decipher.update(CIPHERTEXT); console.log("🔑 Decrypted Data"); decrypted += decipher.final(); //::::::::::::::::::::::::::::::::::: // Return //::::::::::::::::::::::::::::::::::: return decrypted; //::::::::::::::::::::::::::::::::::: } decryptedToken();
2
0
92
Sep ’25
Stuck in Developer Program Enrollment Process - No Response for Months
Hello Apple Developer Community, I'm hoping someone can offer advice on a frustrating situation with my company's Developer Program enrollment process. My timeline: Initial application: October 2024 Initial follow-up: October 2024 Requested document submission: February 2025 Multiple follow-up emails: February-March 2025 Current status: No response for months I've been trying to enroll my small startup (LLC) in the Apple Developer Program since October 2024. After initially being asked for documentation, I uploaded everything possible (including company formation documents). Despite multiple follow-up emails over several months, I've received no updates on my application status or confirmation that my documents were even received. My case number is 102426005487 (sharing in case Apple Support monitors these forums) but as I've followed up several times, there may be more different case numbers. Has anyone experienced similar delays or have suggestions on how to get actual human attention on this issue? I've tried emailing to devprograms multiple times without success. Any advice would be greatly appreciated!
2
0
274
Mar ’25
Can’t renew apple developer membership
my apple dev membership expired, I can’t change anything so I went to support, case number 102637543521. They said it’s because I moved to a different country. I emailed them my proof of address then they stopped replying. Then I tried to start new support requests but nothing came back, I think I might be flagged by the system. i need the membership to publish apps pls help
2
0
81
Jul ’25
Cancel my developer subscription
Hello, I would like to cancel my Apple Developer subscription but I don't see any option on the developer dashboard to cancel it. I tried getting in touch with the support on call but they left me on hold for over 15 minutes and nothing post that. What's the way to cancel my subscription? I do not want to be charged for a renewal.
2
1
816
Dec ’24
Feedback Assistant, Apple Feedback wants me to install beta software
How to report a bug says "With Feedback Assistant available on iPhone, iPad, Mac, and the web, it’s easy to report issues you encounter". The Feedback Assistant User Guide says "Tell Apple about your experience with beta or seed releases". Is Feedback Assistant only intended for reporting bugs in beta software? A year ago I reported a bug in Xcode 14 and now I'm being asked to verify this issue with Xcode 16 Beta 3. I'm not a beta tester and I don't want to install beta software. How should I proceed?
2
0
670
Apr ’25
Individual Developer Account and Enterprise Developer Account are locked by Apple?
Hello, I am an employee of EVN Corporation, the largest energy corporation in Vietnam. Our corporation has been developing mobile applications on the iOS platform since 2017 and has purchased several development accounts, including these two accounts: (developer) and (Enterprise Developer). However, both accounts are experiencing issues and cannot log in to developer.apple.com to continue development. Upon investigation, our accounts may have been flagged for violating certain Apple terms, however, we did not receive any notification via email. We sincerely hope that you can identify our specific issues and help us resolve them to restore these accounts. Thank you very much! Note: For privacy and security reasons, it might be better to mask or remove the actual email addresses when posting publicly. Would you like me to provide information about common reasons for Apple Developer account suspension and steps for resolution?
2
0
332
Dec ’24
Apple Developer Program Enrollemnt
Hello , I recently enrolled in the Apple Developer Program and paid the $99 fee. However, my account has been in pending status for almost a week now. I have tried emailing support a few times but have not received any replies. This is my first time enrolling, and I’m not sure what to do next. Could someone please advise on how to resolve this issue? Any help would be greatly appreciated. Thank you.
2
0
307
Jan ’25
Charged Twice for Apple Developer Program – Same iCloud, Can I Get a Refund?
Hi everyone, I’m posting this to ask for advice and see if anyone has experienced a similar issue with the Apple Developer Program subscription. On July 9th, 2025, I registered for the Apple Developer Program via the Apple Developer app on my iPhone using my main iCloud account (Apple ID). The expected annual fee was 2,299,000 VND (~$99). However, I just checked my billing history and saw that I was charged twice for the same subscription, both under the same Apple ID / iCloud account, on the same day. Key Details: I only enrolled once. Both charges are labeled “Apple Developer Program”, exactly the same amount (2,299,000 ₫). The payments were made through the App Store, not via the website. My account on developer.apple.com/account still shows “Enroll Now” — meaning I haven't been activated yet. I have not received any welcome email either. My questions: Is it possible to request a refund for one of the charges, since both payments came from the same iCloud account and clearly refer to the same subscription? Has anyone else encountered this issue? How long did it take Apple to respond? Was your refund request approved? Should I wait for Apple to activate my account, or should I escalate the issue now? I’ve already submitted a refund request through https://reportaproblem.apple.com, but I’m posting here in case someone has more experience or insights. Thanks in advance!
2
1
235
Nov ’25