expo / expo/eas-cli

Authentication with Apple Developer Portal failed!

Open
#3,049 4 comments 0 reactions 0 assignees View on GitHub
needs review
Dominant language
TypeScript
Stars
1.4k
Forks
236
Avg merge
3d 1h
Merged PRs (30d)
91

Description

### Build/Submit details page URL

_No response_

### Summary

I'm getting "Maintenance - Apple Developer", but it's not in maintenance. I think this page is cached in eas.

```
✔ Logged in New session
Authentication with Apple Developer Portal failed!
Cannot extract key "teams" from response data of type string:

Maintenance - Apple Developer


// Execute immediately to avoid UI flash
(function () {
const prefersDark = window.matchMedia("(prefers-color-scheme: dark)").matches;
const body = document.body;

// If theme-dark or theme-light is already applied, do nothing and lock it
if (body.classList.contains("theme-dark") || body.classList.contains("theme-light")) {

// Set the data-color-scheme attribute based on the existing theme
body.setAttribute('data-color-scheme', body.classList.contains("theme-dark") ? "dark" : "light");

// Prevent future modifications
window.__disableColorScheme = true;

// Hide the color picker immediately
const style = document.createElement('style');
style.textContent = '.color-scheme-toggle { display: none !important; }';
document.head.appendChild(style);

return;
}

// Otherwise, set theme normally based on user settings or system preference
if (window.Settings && window.Settings.preferredColorScheme) {
const colorTheme = (window.Settings.preferredColorScheme === 'auto') && !prefersDark ? 'light'
: (window.Settings.preferredColorScheme === 'light') ? 'light' : 'dark';
body.setAttribute('data-color-scheme', colorTheme);
colorTheme === "dark" ? body.classList.add("theme-dark") : body.classList.add("theme-light");
} else {
const colorTheme = prefersDark ? 'dark' : 'light';
body.setAttribute('data-color-scheme', colorTheme);
prefersDark ? body.classList.add("theme-dark") : body.classList.add("theme-light");
}
})();



/* RSID: */
var s_account="awdappledeveloper"

s.pageName= AC && AC.Tracking && AC.Tracking.pageName();
s.channel="www.en.developer"
s.channel="www.en.developer";


/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code=s.t();if(s_code)document.write(s_code)


We’ll be back soon.


For details and updates, see the developer system status page.


Error: build command failed.
```

### Managed or bare?

managed

### Environment

production

### Error output

_No response_

### Reproducible demo or steps to reproduce from a blank project

$ eas build -p ios --profile production

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.