Jump to content

dealer

New Members
  • Posts

    1
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

dealer's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Hi, im trying to access an xml file on a remote server that requires auth before allowing access. i was given the following code as an example: [code=php:0] <? $ch = curl_init(); curl_setopt($ch, CURLOPT_COOKIEJAR, "/tmp/cookieFileName"); curl_setopt($ch, CURLOPT_URL,"https://myeve.eve-online.com/login.asp"); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, "username=*******&password=********&Check=OK"); ob_start(); // prevent any output curl_exec ($ch); // execute the curl command ob_end_clean(); // stop preventing output curl_close ($ch); unset($ch); $ch = curl_init(); curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); curl_setopt($ch, CURLOPT_COOKIEFILE, "/tmp/cookieFileName"); curl_setopt($ch, CURLOPT_URL,"http://myeve.eve-online.com/character/xml2.asp?characterID=679467044"); $buf2 = curl_exec ($ch); curl_close ($ch); header("Content-Type: text/xml"); echo $buf2; ?> [/code] I have no idea how to get this working tho, or even if it works, i simply want the xml data from the address in the code above to be passed on to a parser. any help on this wud be appreciated.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.