"We offer new support options and therefor the forums are now in read-only mode! Please check out our Support Center for more information." - Vuforia Engine Team

Error on Cloud API

Dear all,

We are facing problems with the cloud target API for a couple of hours now. No changes on our end.

Error: HTTP 400 on CRUD operations.

Any changes we have to be aware of? Anyone facing the same problems?

Cheers

Hello all

We have the same issue on our end also.

400 Bad Request

https://vws.vuforia.com/duplicates/{target_id}

 

Hey there,

 

Could anyone provide me the transaction_id? This should be attached to the response you're getting.

Thanks.

 

Kind regards,

Patrick Scheper

Technical Community Manager

This is an *Urgent* issue for our AR app in production.

Our social AR app is built around Vuforia Cloud features and it is almost completely unusable at the moment, with users already bringing up the issues.

Hey all,

 

The issue you’ve encountered seems to be an unintended side effect of the new internal cloud deployment made on Thursday (20-01-2022) by our R&D. You might run into this issue if you encountering one of these errors:

Thanks Patrick for reaching out to help!

We have fixed this issue from our end.

Just in case other Unity developers came across this issue, we rewrote our code to use "HTTPRequest" class instead of the ancient "WWW" class and that seemed to have do the trick.

I have these lines:

WWWForm form = new WWWForm();

WWW request = new WWW(serviceURI,System.Text.Encoding.UTF8.GetBytes(JsonUtility.ToJson(model)),headers);
yield return request;

 

how can I solve that?