Help - Search - Members - Calendar
Full Version: export information from event list
Skype Community > English > Development, Betas and Skype Garage > Skype Public API
cyberkrausi_
I am not so good at programming, but I need the saved informations from the event log. I know that they are saved in the file calls256.dbb.
The username is saved as ASCII, but the other data is saved with it's internal Variabletype (I think). I want the other datainformation as Time, Date, duration of the call...
I there anybody - who just can tell me the kind of file or how the information is save (format...), because I'm not able to handle that API functions.

Thanks forward for your postings!
marcuswilliamson_
QUOTE(cyberkrausi)
I need the saved informations from the event log. I know that they are saved in the file calls256.dbb.


Manipulating the file directly is not a good idea, as its format may change in future releases.

Instead, try using the program MSGAPITEST.EXE which demonstrates the use of the API. You can download it here:

https://developer.skype.com/Download/Sample...example_win.zip

To get you started try this:

If you want to list just call events:
SEARCH CALLS

If you want to list chat messages:
SEARCH MESSAGES

then pick a number from the call list and type

GET CALL callnumber PARTNER_HANDLE

GET CALL callnumber timestamp
(this gets the time and date)

GET CALL callnumber DURATION

and so on...

Hope this helps.

regards
Marcus Williamson
Connectotel
http://www.connectotel.com/
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.