-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
files.upload doesn't work with '@filename.ext' #6
Comments
I'll look into it. It looks strange that it's there on the post data. Sent from my iPhone
|
Was this issue ☝️ ever fixed? I can't seem to upload files. |
I couldn't replicate the issue myself. Are you able to replicate it consistently or is a 1-off thing? |
I can consistently replicated. |
@adonix can you dump the entire stack trace of the error, please? Or the JSON response (if that's the case). |
had the same issue, you can just simply remove
by custom inherited class
|
Hello,
I found a bug with files.upload. Due to the use of http_build_query() in src/Http/CurlInteractor.php, the '@' before the filename is being urlencoded, causing cURL to not attempt a file upload. I think this can be changed to remove "http_build_query", but I have a feeling that it's there for a reason.
Is there some way this cane be worked around?
the request used:
response using code in
master
:expected/response with edited code:
The text was updated successfully, but these errors were encountered: