Archived Forum Post

Index of archived forum posts

Question:

How to set up URL for HTTP Request POST Properly

Apr 15 '17 at 19:01

If I am making a POST to https://storage.sandbox.ebay.com/FileTransferService How would I properly put this in the code below. Thanks for the help I am trying to weed out some problems.

 req.httpVerb = "POST"
    req.path = "FileTransferService"

    Dim resp As ChilkatHttpResponse
    Set resp = http.SynchronousRequest("storage.sandbox.ebay.com", 443, 1, req)
    If (http.LastMethodSuccess <> 1) Then
        Debug.Print http.LastErrorText
        Exit Function
    End If