ajayshukla / imageshackapi

Automatically exported from code.google.com/p/imageshackapi
0 stars 0 forks source link

Cannot upload image in user's folder #21

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Send/POST informations to http://www.imageshack.us/upload_api.php
   Value List: 
            'action'        => 'transload',
            'rembar'        => 1
            'key'           => API_KEY,
            'title'         => 'File Title',
            'a_username'    => API_USER,
            'a_password'    => API_PASS,
            'url'           => 'File Location'    

What is the expected output? What do you see instead?
1.) File get uploaded to imageshack [working]
2.) File should be under user's account. ie. when API_USER click's my images, 
he should see the image that has been uploaded.

Original issue reported on code.google.com by KoolCav...@gmail.com on 18 Feb 2011 at 9:55

GoogleCodeExporter commented 8 years ago
<form method="post" action="http://www.ImageShack.us/slideshow/import.php">
    <select name="url[]" multiple>
        <option value="http://static.flickr.com/41/84284327_88dad1fcf2_b.jpg">Picture 1, complete URL</option>
        <option value="img54/6417/piggies3at.jpg">ImageShack image link</option>
    </select>
    <input type="radio" name="finalize" value="yes">Yes
    <input type="radio" name="finalize" value="no" checked>No
    <select name="optsize">
        <option value="320x240">Small (320x240)</option>
        <option value="426x320" selected>Medium (426x320)</option>
        <option value="640x480">Big (640x480)</option>
    </select>
    <input type="submit" value="Go">
</form>

Original comment by just...@windowslive.com on 17 Aug 2012 at 5:55