I would like to read my skype message archive outside of the Skype app. And be able to export it in some sort (other than copy-paste it from my messages) as far i can figure skype only provides 30 days or archives.

Any one out there using an app for archiving / exporting Skype messages?

link|improve this question

64% accept rate
feedback

4 Answers

up vote 3 down vote accepted

You can also look at skype's profile database (%USERDIR%\Application Data\Skype\%your profile name%\main.db) which is basically SQLite database and see what you can get from it.

I'll give you a hit about tables:

  • "Conversations" - a conversation
  • "Messages" linked to "Conversations" via convo_id field
  • "Chats" - a list of saved chats, each chat is composed of conversations
  • "ChatMembers" - members of chat(s)

The tables are quite wide and usage of some fields is not that obvious, but I think you get the idea.

link|improve this answer
feedback

Check this out: https://developer.skype.com/Docs/ApiDoc/CHAT%5Fobject

CHATMESSAGES - list of chatmessage identifiers 
CHATMESSAGES - all messages IDs in this chat, for example CHAT #test_l/$6a072ce5537c4044 CHATMESSAGES 34, 35, 36, 38, 39
link|improve this answer
That link is broken. Does Skype still have an API? – Lance Fisher Sep 23 '10 at 7:58
feedback

This is a handy little utility that allows for parsing the history files (of Skype on all platforms - the actual program however only runs on Windows):

link|improve this answer
feedback

You may find this Skype add-on helpful: http://scand.com/products/skyhistory/index.html. It helps saving and storing Skype chat history on a separate flash drive, and it is free.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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