AOL Contact API

AOL API. Hi, any body, please tell me how to get a complete contact address book (including the name of the contact, phone number, emails, etc.). I am getting this information when using the following request with curl:

Inquiry: -

$ aimStartUrl = " http://api.oscar.aol.com/presence/get?f=xml&bl=1&k= ". $ devId. "& a =". UrlEncode ($ authToken);

Getting the result: -

<groups>
 <group>
  <name>picopico</name>
  <buddies>
    <buddy>
     <aimId>mundufive</aimId>
     <displayId>mundufive</displayId>
     <state>offline</state>
     <userType>aim</userType>
     <presenceIcon>http://o.aolcdn.com/aim/img/offline.gif</presenceIcon>
   </buddy>
 </buddies>
</group>

      

Expected Result: -

Complete xml (consisting of buddy name, phone number, email, etc.)

Thanx in advance

0


a source to share


1 answer


Checkout XML-Parser Perl module.



0


a source







All Articles