Error installing Unity's Meta XR All-in-One SDK v62 (and 63) package
I'm getting a console error upon installing Meta XR Core SDK on my Unity 2021.3.36f1 project:
[Package Manager Window] Error while getting access token: invalid configuration from Unity Connect
UnityEditor.AsyncHTTPClient:Done (UnityEditor.AsyncHTTPClient/State,int)
Additionally I'm seeing an error icon with a message "Error while getting access token: invalid configuration from Unity Connect" next to all of the Meta SDK related packages. I've tried uninstalling and reinstalling the package as well as updating it to V63 but the error persists. This also happens accross three different Unity projects on all computers in my organization.
No other package displays this error.
I've also confirmed that my Unity services are all running correctly and that I'm logged in the Unity hub with the same account as my asset store.
Adding Meta's npm.developer.oculus.com as a scoped registry fixed this for me. I tried manual mode also it didn't worked out. Only scopedRegistries as source worked out for me. Try adding this in manifest file under Packages folder.
"scopedRegistries": [ { "name": "Meta", "url": "https://npm.developer.oculus.com", "scopes": [ "com.meta.xr.sdk.audio", "com.meta.xr.sdk.core", "com.meta.xr.sdk.interaction", "com.meta.xr.sdk.interaction.ovr", "com.meta.xr.sdk.platform", "com.meta.xr.sdk.voice", "com.meta.xr.sdk.voice.composer", "com.meta.xr.sdk.voice.dictation", "com.meta.xr.sdk.voice.telemetry", "com.meta.xr.simulator", "com.meta.xr.sdk.sharedassets", "com.meta.xr.sdk.interaction.ovr.samples" ] } ]