Hi!
Following API call fails for me in unity3d4.3.2f1 when using App42_Unity3D_SDK_2.6.dll
uploadService.UploadFile("file.bin", "C:\\App42_Unity3D_SDK_2.6.dll", UploadFileType.BINARY , "my save file");
Error I get is following:
UriFormatException: Invalid URI: The format of the URI could not be determined: 1.0/upload?
System.Uri..ctor (System.String uriString, Boolean dontEscape)
System.Uri..ctor (System.String uriString)
System.Net.WebRequest.Create (System.String requestUriString)
com.shephertz.app42.paas.sdk.csharp.util.Util.MultiPartRequest (System.String fileReferenceName, System.String filePath, System.Collections.Generic.Dictionary`2 queryParams, System.Collections.Generic.Dictionary`2 postParams, System.Collections.Generic.Dictionary`2 headerParams, System.String urlPost, System.String acceptType)
com.shephertz.app42.paas.sdk.csharp.upload.UploadService.UploadFile (System.String name, System.String filePath, System.String fileType, System.String description)
Some other Upload api calls work - for example I can get list of files with uploadService.GetAllFiles();
What can be wrong?