
Andreas Zirngibl
- Gesamtaktivitäten 16
- Letzte Aktivität
- Mitglied seit
- Folge ich 0 Benutzer
- Gefolgt von 0 Benutzer
- Stimmen 0
- Abonnements 5
Aktivitätsübersicht
Neueste Aktivität von Andreas Zirngibl-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hi Mark, The problem was that the body was false formatted. We have quickly built a working example for getting the access token: private static string Login() { try { ...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hallo Volker, ehm ja du hast natürlich Recht... Da fehlt noch ein Schritt, welcher die Download URL für die Datei selbst abholt. Das geht mittels: /v4/public/shares/downloads/{access_key} (POS...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hi Volker, für C# kann ich dir schon mal ein Beispiel geben. Ich hoffe ich hab richtig erkannt, was du suchst. using System;using System.Net;using Newtonsoft.Json;using RestSharp;namespace Snippets...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hi Volker, also ich habe das mal nachgeprüft und ich komme zum selben Ergebnis. Die Ursache liegt darin, dass wir nur noch TLS 1.2 erlauben, was aktuell standardmäßig dem Cliententwickler überlasse...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hello Vladimirs, In the following you can see the implemenation of "missingFileKeys" for our C# SDK: ```public void GenerateMissingFileKeys(long? nodeId = null, int limit = int.MaxValue) {client.Re...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hello Vladimirs, I do not fully understand what you do there (it seems that you write the "data" (unencrypted bytes) to the temp file and not the "uploadedEncryptedFileAsByteArray"): Using wc As Ne...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hey Vladimirs, In your post 1 month ago your download seems to be correct.The problem is still in your upload. I have used your earlier posted code and commented the point were you have been wrong....
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hello Vladimirs, OK, now I can see the problem. For downloading an encrypted file, you also have to download your user key pair that was used for the upload. This must be decrypted with the corresp...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hello Vladimirs, The key has a length of 44 because it is BASE64-formatted. The unformatted key is of length 32. If I use your values for testing in the following way: PlainFileKey fk = new PlainFi...
-
Andreas Zirngibl hat einen Kommentar hinterlassen
Hello Vladimirs, Currently I can only reproduce the error you decribed if I instantiate the PlainFileKey by my own with a PlainFileKey.Key longer than 190 bytes. Can you please check the length of ...