Skip to content
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

cannot post multi-part with file #163

Open
gregkotsaftis opened this issue Jun 28, 2020 · 1 comment
Open

cannot post multi-part with file #163

gregkotsaftis opened this issue Jun 28, 2020 · 1 comment

Comments

@gregkotsaftis
Copy link

Hello,

while using Postman to test an image upload to freeimage.host, it works as supposed to.
But when I use Java code, it fails. Maybe it is a bug, but i am not sure since the same code works for imgbb.com!

POSTMAN
POST: https://freeimage.host/api/1/upload/
PARAMS: key=6d207e02198a847aa98d0a2a901485a5
BODY: source=an image filename from local filesystem

JAVA
File f = new File(an image filename from local filesystem);
HttpRequest httpRequest = HttpRequest.post( "https://freeimage.host/api/1/upload/" )
.part("key", apikey)
.part("source", f.getName(), f)
.send("");

or

File f = new File(an image filename from local filesystem);
HttpRequest httpRequest = HttpRequest.post( "https://freeimage.host/api/1/upload/" )
.part("key", apikey)
.part("source", f.getName(), f);
httpRequest,code();

Java fails with HTTP response status code 403.

@gregkotsaftis
Copy link
Author

In Java code the apikey is "6d207e02198a847aa98d0a2a901485a5".

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant