ImageShack is a popular image hosting site, providing free image hosting and image uploading tools.
Questions tagged [imageshack]
36 questions
0
votes
0 answers
java - Upload file to imageshack.us
I'm trying to upload image to the "Imageshack.us" , they have HTTP API and I am using it to upload my image, but unfortunately I always get this response from server :
{
"success":false,
"process_time":33,
"result":{
…

Mickey Tin
- 3,408
- 10
- 42
- 71
0
votes
2 answers
How to delete an image on Imageshack using its API
I'm trying to use the Imageshack api to delete an image uploaded to my account.
I have successfully managed to upload an image to it using the API.
https://www.imageshack.us/upload_api.php?url=[URL_OF_THE_IMAGE]&key=[MY_KEY]
I can delete the image…

Buntu Linux
- 492
- 9
- 19
0
votes
1 answer
ImageShack API and Python
I wanted to start programming my first simple application just for learning purpose but I've encountered some problems - ImageShack API. For program that I want to create this API would help a lot but I'm using Python language and I don't know…

ignassz
- 15
- 1
- 5
0
votes
1 answer
How can I make POST requests without making my API key public?
Using the imageshack API I can upload images to imageshack but I have to use an API key to do that. I can create a POST form for the image upload to imageshack but the key has to be put in the form and that exposes the API key publicly. How can I…

dknight
- 1,243
- 10
- 23
-1
votes
2 answers
Integrating github imageshack SDK with Android Studio
I am newbie for Github and Android. I want to use imageshack sdk. but I don't know how to use. There is no dependencies like this:
dependencies {
compile 'com.imageshack:1.0.3'
}
Also, their getting started guide is for Eclipse not for Android…

serkan stack
- 155
- 5
- 15
-3
votes
1 answer
Cut images recursively bash
How to cut from the bottom 20% recursively in Bash? if the image size is less than 200px?
Tried the method, but erroneously
find -name "*.jpg" -crop 20%height -quality 100 {} \;

user1654251
- 11
- 2