search for: httppost

Displaying 2 results from an estimated 2 matches for "httppost".

Did you mean: httpport
2013 Jul 23
2
downloading web content
...occurrences/download?q=Banksia+ericifolia I have tried the following and neither work: a<- getURL(" http://biocache.ala.org.au/ws/occurrences/download?q=Banksia+ericifolia") Error in curlPerform(curl = curl, .opts = opts, .encoding = .encoding) : embedded nul in string: and a<-httpPOST(" http://biocache.ala.org.au/ws/occurrences/download?q=Banksia+ericifolia") Error: Internal Server Error Any help would be appreciated. Daisy -- Daisy Englert Duursma Department of Biological Sciences Room E8C156 Macquarie University, North Ryde, NSW 2109 Australia [[alternative HT...
2009 Oct 28
0
Basic Authentication within a POST-request using HTTPClient
Hey, I want to call a service with HTTPpost behind a BasicAuth using HTTPClient like this: client = HTTPClient.new body = { ... } client.set_auth(domain, user, password) client.post (domain, body) Receive a 401! If I try it with GET, it''s perfectly working, so I know the user/ password is correct. It seems, using POST, the set_au...