Results 1 to 10 of 15
Hybrid View
-
25th Nov 2011, 02:41 PM #1OPMember
Lulzimg API
Hi, I am planning to make a small tool that will remote upload images to Lulzimg. I have searched a lot, but didn't find any API for remote upload using Lulzimg service.
Can anyone plz tell me where I can find API for Lulzimg? I use vb.net for developing tools.
Thankscodebreaker911 Reviewed by codebreaker911 on . Lulzimg API Hi, I am planning to make a small tool that will remote upload images to Lulzimg. I have searched a lot, but didn't find any API for remote upload using Lulzimg service. Can anyone plz tell me where I can find API for Lulzimg? I use vb.net for developing tools. Thanks Rating: 5
-
25th Nov 2011, 02:47 PM #2Respected Developer
there API exists but i dont think its public and not with a lot of options, contact 'Lifetalk' for information.
Although it is fairly easy to upload images to lulzimg programmatically, just check the headers while you remote upload some image.Bots Development | Web Development | Wordpress Customization | PSD Conversion
Life has many twists and turns in it, you have to take what you are given and use it for the best.
-
25th Nov 2011, 02:51 PM #3OPMember
Hi, thanks for your quick reply. I tried to find that using fiddler, but not clear about the data request. I found the url http://lulzimg.com/upload.php but not sure how to implement the remote upload option with this url.
Thanks
-
25th Nov 2011, 02:55 PM #4Respected Developer
u need to send request this way and then use regex or xpath to get image url:
PHP Code:http://www.lulzimg.com/upload.php?submit=lulz&url=http://domain.com/logo.png
Bots Development | Web Development | Wordpress Customization | PSD Conversion
Life has many twists and turns in it, you have to take what you are given and use it for the best.
-
25th Nov 2011, 02:59 PM #5OPMember
-
25th Nov 2011, 03:14 PM #6Respected Developer
for multiple images i checked with fiddler and seems u need to add a line break between image links then send ur post request.
http://screensnapr.com/e/anuPIP.pngBots Development | Web Development | Wordpress Customization | PSD Conversion
Life has many twists and turns in it, you have to take what you are given and use it for the best.
-
25th Nov 2011, 03:29 PM #7MemberWebsite's:
WarezRocker.info Share4U.org Imdb.WarezRocker.info DownTurko.org Host-Palace.com HeroTurko.pro
-
25th Nov 2011, 03:39 PM #8Respected DeveloperBots Development | Web Development | Wordpress Customization | PSD Conversion
Life has many twists and turns in it, you have to take what you are given and use it for the best.
-
25th Nov 2011, 03:01 PM #9MemberPHP Code:
<form action="" method="post">
<p>
<br /><input width="80" name="imglinks"><br />
</p>
<p>
<input type="submit" value="Upload Image" />
</p>
</form>
<?php
if (!empty($_POST['imglinks']))
{
$ch = curl_init();
$imglinks=$_POST['imglinks'];
curl_setopt($ch, CURLOPT_URL,"http://www.lulzimg.com/upload.php?submit=lulz&url=$imglinks");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie);
curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie);
$data = curl_exec($ch);
curl_close($ch);
preg_match_all("/http:\/\/i28.lulzimg.com\/[a-z0-9]+\/[a-z0-9A-Z.]+/", $data, $matches);
$break[]=$matches[0];
echo "LULZ Share Link -";
echo $break[0][0];
echo "</br>";
echo "Direct Layout Links -";
echo $break[0][1];
echo "</br>";
}
?>
-
25th Nov 2011, 03:21 PM #10Member
There is also lulzimg.com/app.php which sborg uses, dont know if that is also something to do with the API
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
need help ( lulzimg )
By rockamitsingh in forum General DiscussionReplies: 8Last Post: 26th Jan 2012, 05:51 AM -
Lulzimg is down
By sahil00150 in forum Webmaster DiscussionReplies: 7Last Post: 12th Jan 2012, 10:42 AM -
lulzimg is down for me for 1 hr ?
By djkelaj in forum General DiscussionReplies: 1Last Post: 11th Jan 2012, 02:53 PM -
lulzimg
By ciaociao4 in forum Web Development AreaReplies: 5Last Post: 17th Aug 2011, 07:55 AM -
lulzimg add on
By chaudhary9 in forum Technical Help Desk SupportReplies: 4Last Post: 27th Jun 2011, 03:08 PM
themaCreator - create posts from...
Version 3.45 released. Open older version (or...