Baljeet Singh
Baljeet Singh
Hi Is the **Ionic 4/5** support in the works? I'm currently developing a app using Ionic. I guess I can use the current **Angular Material** supported library inside the Ionic...
@Chris-AdHome I don't it is a good idea to use Basic Authentication in production. And no, JWT Token wasn't working in Postman. Basic Auth Works.
Hello @airesvsg, Yes, the structure is like this.
How can I use this to chunk file upload support to Azure storage, Is there any documentation available?
Thanks I'll take a look. I'm actually getting sas token based on the logged in user credentials. So, it seems secure 😉
@PauloPeres Can you push your code to separate npm package? Otherwise I think I have to copy paste the updated files to ng2-file-upload node_modules folder. Is there's a better solution?
Ok, I'll give it a try like this
@PauloPeres Got the import working for your code. Here's my working code without Chunk support, I'm using dynamic URL for each file. ``` videoId = this.guid(); cameraId = this.guid(); sasToken:...
@PauloPeres Updated the URL in onBeforeUploadItem, But when the upload start it is doing post request on the URL, so getting the error (The resource doesn't support specified Http Verb.)...
@PauloPeres I updated the uploader object with method and headers, ``` this.uploader = new FileUploader({ // url: URL, disableMultipart : false, isHTML5: true, chunkSize: (1024*1024), // 2MB currentChunkParam: 'current_chunk', totalChunkParam:...