Trying to use an intuit (quickbase API) on a web site. Everything works fine, except when I'm not signed in, I get an XML response error.
The quickbase documentation gives an example XML request that looks like this:
POST https://<target_domain>/db/main HTTP/1.0
Content-Type: application/xml
Content-Length:
QUICKBASE-ACTION: API_Authenticate
<qdbapi>
<username>PTBarnum</username>
<password>TopSecret</password>
<hours>24</hours>
<udata>optional data</udata>
</qdbapi>
The thing is, I can't figure out where it goes, and in what format it should be in. I tried placing it in the html header, and also separately as an include.
Can anyone point me in the right direction?