Coder Social home page Coder Social logo

Location Error about ngx-uploadx HOT 5 CLOSED

kukhariev avatar kukhariev commented on July 20, 2024
Location Error

from ngx-uploadx.

Comments (5)

kukhariev avatar kukhariev commented on July 20, 2024

Backend must set the Location header:
uploadx api,
google drive api

If there are difficulties in implementing this apis you can use ready-made solutions such as tusdotnet,
or sometimes it's easier to create your own custom uploaderClass to support a non-standard upload api.

Chunk index custom uploaderClass example:

// uploaderXwithChunkIndex.ts

import { UploaderX } from 'ngx-uploadx';

export class UploaderXwithChunkIndex extends UploaderX {
  chunkIndex = 1; // init

  async sendFileContent(): Promise<number | undefined> {
    const { end, body } = this.getChunk();
    const headers = {
      'Content-Type': 'application/octet-stream',
      'Content-Range': `bytes ${this.offset}-${end - 1}/${this.size}`,
      'Chunk-Index': this.chunkIndex
    };
    await this.request({ method: 'PUT', body, headers });
    
    this.chunkIndex++; // increase on success

    return this.getOffsetFromResponse();
  }
}

add to options:

  options: UploadxOptions = {
    endpoint: `${environment.api}/files`,
    ...
    chunkSize: 10 000 000,
    uploaderClass: UploaderXwithChunkIndex
  };

from ngx-uploadx.

cormac01 avatar cormac01 commented on July 20, 2024

Thanks for the above. This was helpful documentation. Have fixed backend and am returning Location as suggested but am still receiving error. See below execution plan and response.

  1. upload request sent to "https://localhost:44357/api/Uploads/Uploads". This works fine and hits controller.
  2. In by backend I have Location header set for PUT endpoint like so: HttpContext.Response.Headers.Add( "Location", $"https://localhost:44357/api/Upload/SendChunk?uploadId={uploadId}");
  3. In my client I can see the response headers which contains Location, see below:
    image
  4. Unfortunately, I am still getting initial error mentioned like so:
    image

Can you see anything immediately obvious - bad url or http protocol must be HTTP. Thanks for any assistance.

from ngx-uploadx.

cormac01 avatar cormac01 commented on July 20, 2024

@kukhariev found the issue, issue with cors policy in my backend and needed the below header. thanks for the help.

image

from ngx-uploadx.

kukhariev avatar kukhariev commented on July 20, 2024

Yeah, I saw that, and we also need to remember to add Range to the Access-Control-Allow-Headers header for PUT requests.
Or context.HttpContext.Response.Headers.Add("Access-Control-Allow-Headers", "*") ,
or take it from browser access-control-request-headers

from ngx-uploadx.

cormac01 avatar cormac01 commented on July 20, 2024

cheers @kukhariev

from ngx-uploadx.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.