Modify your models forge tutorial with UpdateIPTParam App Bundle - autodesk-forge

I'm working on the forge tutorial "Modify your models": (https://learnforge.autodesk.io/#/tutorials/modifymodels)
When I start the workitem it does not work for the "UpdateIPTParam" App Bundle. It is not giving me any error message, it just gives me the workitem id and then nothing happens. Anyone having the same issue?
Thanks in advance

Related

WebGL context lost error on Autodesk Forge

While loading a product into the Forge viewer using latest version of Chrome, user receives a message that states "WebGL context lost". They had a model loaded into the viewer which was working fine, clicked on another model to view it and that is when they received the error message (see attachment).
Is there anything that can be done to mitigate or resolve this issue?
Click for Picture of Error Message
Here are two possibilities for this issue:
The graphic card driver is out-date, please try to upgrade it: https://knowledge.autodesk.com/support/bim-360/troubleshooting/caas/sfdcarticles/sfdcarticles/Error-WebGL-context-lost-when-viewing-files-in-BIM-360.html
There might be some viewer instances that haven't been destroyed properly. you can type NOP_VIEWERS in your browser console to see if the array length is greater than two. To fix this, you can take advantage of viewer.finish() before loading other models.

Forge server authentication error 2 Legged

I am new to forge. I have been trying to create a basic server and authentication using nodejs by following exact steps in the youtube training videos. But i am facing errors in the initial phase itself getting an error code: ECONNRESET. I have a feeling that my firewall is blocking the servers but not able to make anything concrete out of this. The url that i tried hitting is "http://localhost:3000/api/forge/oauth/token". For some reason it always goes to catch block. Kindly let me know how to debug the error, and figure out the urls that need unblocking if necessary.

Postman HERE API Error on Setup

I'm having an issue setting up to the HERE API using Postman following these two guides: 1, 2.
Anyways, I've loaded the Postman collection, set the global environment and placed in my app-id and app-code (Freemium account) but I still get the following error when trying to get the access token:
{
"msg": "app_id or app_code is wrong",
"kind": "datalens#error",
"code": 402
}
Does anyone have any experience with getting through this? I've tried a million different little variations but I still get the same error. Any help is vastly appreciated. Thanks
Unfortunately the Geovisualization REST API is the only API on the portal that's currently not part of the Freemium plan. I apologize for the unclear error message and will look into improving this. To gain access please contact us through the portal.

Unable to access to Web API with browser (XML error)

Good evening,
Recently I have made a simple Web API with Azure Function App + Cosmos DB. So far it worked perfectly (I used Postman to hit the endpoints and everything went fine). However, now I'm trying to access directly to the Web API with the browser https://.azurewebsites.net/api/assets and I found this error that impedes me to access to the page:
<?xml version="1.0" encoding="ISO-8859-1"?>
<ApiErrorModel xmlns="http://schemas.datacontract.org/2004/07/Microsoft.Azure.WebJobs.Script.WebHost.Models" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Arguments i:nil="true" xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays"/>
<ErrorCode>0</ErrorCode>
<ErrorDetails i:nil="true"/>
<Id>c69b0acd-e646-4b09-8dc2-2444b34a177a</Id>
<Message>An error has occurred. For more information, please check the logs for error ID c69b0acd-e646-4b09-8dc2-2444b34a177a</Message>
<RequestId>b1f2d2ed-ec03-4f3e-9482-60d023bb9e79</RequestId>
<StatusCode>InternalServerError</StatusCode>
</ApiErrorModel>
Do you know how can I fix this problem?, bear in mind that I'm using the Function App from Azure Microsoft
Thanks in advance!

How do I get the Quick Start Project to build and execute?

I tried to get the Google Quickstart project to work on Android.
https://developers.google.com/drive/quickstart-android. I notice there are lots of similar questions on this- and wondered if there was a sample project anywhere that does work?
I followed the instructions but I get an error when it starts up:
06-10 00:15:04.904: E/AndroidRuntime(16613): FATAL EXCEPTION: main
06-10 00:15:04.904: E/AndroidRuntime(16613): java.lang.NoClassDefFoundError: com.google.api.client.googleapis.extensions.android.gms.auth.GoogleAccountCredential
Which refers to this line:
credential = GoogleAccountCredential.usingOAuth2(this, DriveScopes.DRIVE);
startActivityForResult(credential.newChooseAccountIntent(), REQUEST_ACCOUNT_PICKER);
You should target an API level with Google APIs and make sure that Google APIs client library jars are on your build path.