Message
 
 
To
21/12/2016 11:09:13
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
01645753
Message ID:
01645808
Views:
64
>>Hi,
>>
>>Do you know, and if yes, how, to create an HTTP Request object in VFP?
>>
>>TIA
>
>Depending on your plans, you can use the ServerXMLHTTP class.
>
>
>LOCAL HttpRequest AS MSXML2.ServerXMLHTTP60
>LOCAL HttpResponseEndPoint AS String
>LOCAL Reply AS String
>
>m.HttpResponseEndPoint = "https://www.levelextreme.com"
>
>m.HttpRequest = CREATEOBJECT("MSXML2.ServerXMLHTTP.6.0")
>
>m.HttpRequest.Open("GET", m.HttpResponseEndPoint, .F.)
>m.HttpRequest.Send()
>
>m.Reply = m.HttpRequest.Responsetext
>
>? m.Reply
>
Your code works, as you wrote it. But I need to take just one line from your code, that creates httpRequest and add parameters to it.
m.HttpRequest = CREATEOBJECT("MSXML2.ServerXMLHTTP.6.0")
m.HttpRequest.AddParameter("grant_type", "password")
The second line above fails. If you know or can see what is wrong with adding a parameter the way I did, please let me know.
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Next
Reply
Map
View