OptiGold and DirectAdmin

djcronos

Verified User
Joined
Mar 21, 2006
Messages
76
Hello everyone,

I'm gonna have to lean on you for technical expertise here, but I looked at the API for DirectAdmin and it says it can handle GET and POST submissions. Those are just HTTP calls with parameters passed in the URL, correct? If so, OptiGold handles that. In fact, that's exactly how we configure our services today.

What I don't see in the DirectAdmin help page is the format of the GET and POST calls. What do you think? Can this work or am I missing something else?

Thanks in advance.
 
The way a GET or POST call works is always the same as it's defined by the HTTP protocol. A GET request is simply http://www.domain.com/file.ext (and may be followed by parameters: file.ext?param=value) while a POST request typically doesn't include any parameters in the URL but rather specifies them in the body of the HTTP request.
 
Back
Top