Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Hello, I was wondering if it is possible to embed a vuforia studio project into an existing app. Either by web or even directly.
My idea is that I have an existing application, make a vuforia studio project, and in the application, when I click on a button to see in augmented reality the project opens inside that application. and have the experience inside that application.
Hi @RG_10041320 ,
depending on the goal of the embed view we can:
e.g. here your app could call window.location or window.lcation.href = url e.g.:
///////////////////////////////////////////////////
$scope.href = function (url) {
try{
$timeout( () => {var ref = window.location.href=url;
twx.app.fn.addSnackbarMessage("window.location.href="+window.location.href,"twLogo");},500)
}
catch(e)
{
alert('redir failed ' + e);
}
}
///////////////////////////////////////////////////
$scope.location = function (url) {
try{
$timeout( () => {var ref = window.location=url;
twx.app.fn.addSnackbarMessage("window.location.href="+window.location.href,"twLogo");},500)
}
catch(e)
{
alert('redir failed ' + e);
}
}
When I try this:
https://ccc0d632b447268a.studio-trial.vuforia.io:8080/ExperienceService/properties
this happens:
{"message":"Insufficient permissions to access resource","errorCode":403,"error":{"errorCode":403,"message":"Insufficient permissions to access resource","name":"HttpError","status":403}}