Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Aol contact API. Hello can any body please tell me how to fetch complete contacts address book(including buddy name,phone number,emails etc.). I'm getting this sort of information while using following query using curl:

Query:-

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

Getting 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,emails etc.)

Thanx in advance

share|improve this question

1 Answer

Checkout XML-Parser Perl module.

share|improve this answer
hello ,thanx for your reponse i think you didnt understand my question..i m not getting complete xml as a response calling aol contact api.parsing is secondary thing first we need complete xml – Abhimanyu May 26 '09 at 7:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.