Jump to content

upload file by winhttp


Recommended Posts

Hello,i have got problem, i trying to send file by winhttp at fileupload.pl

#include "WinHttp.au3"
Global $hOpen = _WinHttpOpen()
$FileHandle = FileOpen("C:\Documents and Settings\all\Pulpit\xxx\testimage.jpg")
Global $hConnect = _WinHttpConnect($hOpen, "fileupload.pl")
Global $hRequest = _WinHttpOpenRequest($hConnect, "POST")
Global $sData = ""
$sdata &= '-----------------------------114782935826962' & @crlf
$sdata &= 'Content-Disposition: form-data; name="userfile"; filename="testimage.jpg"' & @crlf
$sdata &= 'Content-Type: image/jpeg' & @crlf & @CRLF
$sData &= FileRead($FileHandle) & @CRLF
_WinHttpSendRequest($hRequest, "Content-Type: multipart/form-data; boundary=---------------------------114782935826962", Binary($sData))
_WinHttpReceiveResponse($hRequest)
consolewrite(stringlen($sdata))
global $sResult = ""
Do
$sResult &= _WinHttpReadData($hRequest)
Until @error
;MsgBox(0, "", $sResult)
ConsoleWrite($sResult & @CRLF)

_WinHttpCloseHandle($hRequest)
_WinHttpCloseHandle($hConnect)
_WinHttpCloseHandle($hOpen)
what i doing wrong?headershttp://scr.hu/0rby/j9k91

Edited by jackraymund

thanks you BrewManNH

Link to comment
Share on other sites

$FileHandle = FileOpen("C:\Documents and Settings\all\Pulpit\ogamebot\testimage.jpg", 16)

I suggest you read the rules

[font="helvetica, arial, sans-serif"]Hobby graphics artist, using gimp.Automating pc stuff, using AutoIt.Listening to music, using Grooveshark.[/font]Scripts:[spoiler]Simple ScreenshotSaves you alot of trouble when taking a screenshot!Don't remember what happened with this, but aperantly the exe is all i got.If you don't want to run it, simply don't._IsRun UDFIt figures out if the script has ben ran before based on the info in a ini file.If you don't want to use exactly what i wrote, you can use it as inspiration.[/spoiler]

Link to comment
Share on other sites

im bad at english, and i didnt know where i break a rule :/

a "ogame" is a wrong word?

anyway, edited

@down

Posted Image

and that isnt a bot, i making program like screenshooter

and i only make a script in this folder ;f

but that still isnt solve my problem :<

Edited by jackraymund

thanks you BrewManNH

Link to comment
Share on other sites

no, the last part "bot".

Bots are not allowed.

[font="helvetica, arial, sans-serif"]Hobby graphics artist, using gimp.Automating pc stuff, using AutoIt.Listening to music, using Grooveshark.[/font]Scripts:[spoiler]Simple ScreenshotSaves you alot of trouble when taking a screenshot!Don't remember what happened with this, but aperantly the exe is all i got.If you don't want to run it, simply don't._IsRun UDFIt figures out if the script has ben ran before based on the info in a ini file.If you don't want to use exactly what i wrote, you can use it as inspiration.[/spoiler]

Link to comment
Share on other sites

Bots are only not allowed if they're game related bots, or other type of rule violation. Until the poster violates a rule, we should give him/her the benefit of the doubt.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

Bots are only not allowed if they're game related bots, or other type of rule violation. Until the poster violates a rule, we should give him/her the benefit of the doubt.

Oh, i was led to belive no bots were allowed, what so ever.

My mistake.

[font="helvetica, arial, sans-serif"]Hobby graphics artist, using gimp.Automating pc stuff, using AutoIt.Listening to music, using Grooveshark.[/font]Scripts:[spoiler]Simple ScreenshotSaves you alot of trouble when taking a screenshot!Don't remember what happened with this, but aperantly the exe is all i got.If you don't want to run it, simply don't._IsRun UDFIt figures out if the script has ben ran before based on the info in a ini file.If you don't want to use exactly what i wrote, you can use it as inspiration.[/spoiler]

Link to comment
Share on other sites

I used this code to upload a pic because your page is mess:

#include "WinHTTP.au3"

$sFile = @ScriptDir & "\testimage.jpg"

$sForm = _
        '<form action="http://fileupload.pl" method="post" enctype="multipart/form-data">' & _
        '    <input type="file" name="userfile" />' & _
        '    <input type="submit" name="upload" value="Wgraj plik">' & _
        '</form>'

; Initialize and get session handle
$hOpen = _WinHttpOpen()

$hForm = $sForm

; Fill form on this page
$sRead = _WinHttpSimpleFormFill($hForm, $hOpen, Default, "name:userfile", $sFile)

; Close connection handle
_WinHttpCloseHandle($hForm)
; Close session handle
_WinHttpCloseHandle($hOpen)

; See what's returned (in default browser or whatever)
If $sRead Then
    ConsoleWrite($sRead & @CRLF)
EndIf

Now tell me how do I delete it. It's my personal photo.

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...