Created
September 23, 2022 12:24
-
-
Save raven/d7f3aa56cf0ef820d20ad4061cd62ff0 to your computer and use it in GitHub Desktop.
Download Xcode without Apple ID
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fetch ADCDownloadAuth cookie | |
curl --cookie-jar cookie_file 'https://developerservices2.apple.com/services/download?path=%2FDeveloper_Tools%2FXcode_14%2FXcode_14.xip' | |
# Download Xcode using fetched ADCDownloadAuth cookie | |
curl --cookie cookie_file --remote-name 'https://download.developer.apple.com/Developer_Tools/Xcode_14/Xcode_14.xip' |
Appears broken. I maybe tweaked this for Xcode 15 but not sure anymore.
Unfortunately this avenue was closed by Apple
I tried out with xcode 16.2 it was working atm not really trying to get 16.3
It's work for xcode 16.0
Working with v16:
curl --cookie-jar cookie_file 'https://developerservices2.apple.com/services/download?path=%2FDeveloper_Tools%2FXcode_16%2FXcode_16.xip'
curl --cookie cookie_file --remote-name 'https://download.developer.apple.com/Developer_Tools/Xcode_16/Xcode_16.xip'
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://petegoldsmith.com/2022/09/24/download-xcode-without-apple-id.html