02-12-2021 03:30 PM
error: Must call get_signature first (1971051)Here is the code that I run when the application starts. Reminder that this works when using a previously published App ID, but doesn't work with an App Lab App ID.
void SignInToOculus() {
Core.AsyncInitialize().OnComplete(message => {
if (!message.IsError) {
Users.GetLoggedInUser().OnComplete((msg) => {
if (msg.IsError) {
print("error: " + msg.GetError().Message); // error message above originates from here
Invoke("InitializeOculusInfo", 10);
} else {
Users.GetOrgScopedID(msg.GetUser().ID).OnComplete((msg2) => {
if (msg2.IsError) {
print("error: " + msg2.GetError().Message);
Invoke("InitializeOculusInfo", 10);
} else {
print("Logged in using Oculus");
}
});
}
});
}
});
}
09-09-2021 11:00 AM
Is this possible? Does AppLab have an API we can use to script deploys/releases?