These forums have been archived and are now read-only.
The new forums are live and can be found at https://forums.eveonline.com/
Help with AllianceList XML feed (stuck n00b alert!)
eveapi version="2" currentTime 2015-09-09 12:39:58 /currentTime result rowset name="alliances" key="allianceID" columns="name,shortName,allianceID,executorCorpID,memberCount,startDate" row name="Goonswarm Federation" shortName="CONDI" allianceID="1354830081" executorCorpID="1344654522" memberCount="14001" startDate="2010-06-01 05:36:00" rowset name="memberCorporations" key="corporationID" columns="corporationID,startDate" row corporationID="98000377" startDate="2015-09-01 04:35:00"/ row corporationID="98002506" startDate="2014-11-12 22:20:00"/ row corporationID="98007214" startDate="2012-01-28 05:36:00"/ row corporationID="98008630" startDate="2010-12-20 19:40:00"/ row corporationID="98014536" startDate="2011-01-16 15:45:00"/ etc... /rowset /row row name="Brave Collective" shortName="BRAVE" allianceID="99003214" executorCorpID="98199293" memberCount="12464" startDate="2013-05-06 22:20:14" rowset name="memberCorporations" key="corporationID" columns="corporationID,startDate" row corporationID="1818800266" startDate="2015-01-14 00:43:00"/ row corporationID="1857499356" startDate="2013-12-28 23:06:00"/ row corporationID="781729299" startDate="2013-12-10 22:55:00"/ etc... /rowset /row etc... /rowset /result cachedUntil 2015-09-09 13:11:51 /cachedUntil /eveapi
//Retrieve the MASSIVE AllianceList.xml file and parse it.$alinfo = simplexml_load_file('https://api.eveonline.com/Eve/AllianceList.xml.aspx');//get alliance infoforeach($alinfo->result->rowset[0] as $row){ $alnm = $row['name']; $shnm = $row['shortName']; $alid = $row['allianceID']; $exid = $row['executorCorpID']; $meco = $row['memberCount']; $stdt = $row['startDate']; $cpid = $row['corporationID']; //echo results for now... echo' '.$alnm.' '.$shnm.' '.$alid.' '.$exid.' '.$meco.' '.$stdt.' '.$cpid.' ';}
//get member corp infoforeach($alinfo->result->rowset[1] as $mem){ $corpID = $mem['corporationID']; $joined = $mem['startDate']; //echo results for now... echo''.$corpid.' '.$joined.'';}
SheetMon_V2 a gdocs spreadsheet what pulls lots of stuff, feel free to make a copy :-)
--
Finds camping stations from the inside much easier. Designer of Yapeal for the Eve API. Check out the Yapeal PHP API Library thread.