Hello
So I'm trying to implement a file upload process in angular that simply takes a csv file selected by the user, and posting this to a service at a working endpoint for continued processing.
On the post attempt, the response simply generates an 'ERR_BLOCKED_BY_CLIENT' error and I'm DOA. All that google search's mentions in regards to this issue is something to with adblocker software.
Also, when this is issued, while I'm stating 'withCredentials=true' I see no evidence of my cookie data in the request information to the service. Is this due to the blocking process too?
I can provide some code if requested, but it's pretty basic. Just wanted to know if there's something obvious that needs to be configured on my dev system that needs pre-configuring (using chrome on a mac system).
from my understanding, starting chrome with 'disable security' is specific to disabling CORs related challenges. So I'm not sure if this is applicable here.
thanks,