Jump to content

API Authorization Denied/HTTP POST?


cmsplushosting

Recommended Posts

Dim newURL As String = My.Settings.WHMCSBaseURL & "/includes/api.php"


       ' Create a request using a URL that can receive a post. 
       Dim request As WebRequest = WebRequest.Create(newURL)
       ' Set the Method property of the request to POST.
       request.Method = "POST"
       ' Create POST data and convert it to a byte array.
       Dim postData As String = "username=admin" & _
           "&password=1234" & _
           "&action=getsupportstatuses"

       Dim byteArray As Byte() = Encoding.UTF8.GetBytes(postData)
       ' Set the ContentType property of the WebRequest.
       request.ContentType = "application/x-www-form-urlencoded"
       ' Set the ContentLength property of the WebRequest.
       request.ContentLength = byteArray.Length
       ' Get the request stream.
       Dim dataStream As Stream = request.GetRequestStream()
       ' Write the data to the request stream.
       dataStream.Write(byteArray, 0, byteArray.Length)
       ' Close the Stream object.
       dataStream.Close()
       ' Get the response.
       Dim response As WebResponse = request.GetResponse()

       ' Get the stream containing content returned by the server.
       dataStream = response.GetResponseStream()
       ' Open the stream using a StreamReader for easy access.
       Dim reader As New StreamReader(dataStream)
       ' Read the content.
       Dim responseFromServer As String = reader.ReadToEnd()
       ' Display the content.
       TextBox1.Text = responseFromServer
       ' Clean up the streams.
       reader.Close()
       dataStream.Close()
       response.Close()

 

It returns:

result=error;message=Authentication Failed;

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

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

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated