Jump to content

how to post via winhttp equivalent to curl -d


Recommended Posts

The server im trying to connect to will not parse my winhttp request but works fine when i use curl.  Am i missing some parameters in winhttp?

 

#include "WinHttp.au3"
 
    ; Initialize and get session handle
    Global $hOpen = _WinHttpOpen()
    Global $hConnect = _WinHttpConnect($hOpen, "http://url.com/") 
 
    ; Simple-request it...
    $sResult =  _WinHttpSimpleSSLRequest($hConnect, "POST", "/api/v1/projects/?auth=12345", Default, "name=test22")
 
    ; Close handles
    _WinHttpCloseHandle($hConnect)
    _WinHttpCloseHandle($hOpen)
MsgBox(0, '', $sResult)
Edited by vortex91
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...