Skip to content
SpongyBacon edited this page Aug 3, 2015 · 13 revisions

Issues & feature suggestions belong in the issue tracker.

Quick setup guide

  1. Follow the steps in the readme file. Using maven is almost essential to use this project whilst it is still in heavy development (use it anyway).
  2. Create a main class and include the login code. Click here to see an example.
  3. Call the login method when your program starts for it to login to Skype.
  4. Once you are done with your session, make sure you use Skype#logout!

Basic API usage

Receiving messages

This is what you'll want to be doing if you are hoping to develop any sort of Skype bot. // TODO

Sending messages

To send a simple plan text message, you can use

Message message = Message.create().with(Text.plain("message"));
chat.sendMessage(message);
```
Full formatting documentation: https://github.com/samczsun/Skype4J/wiki/Messages

## Debugging
Please see these [debugging steps](http://coming.soon) before you submit an issue or ask for help with the API.
Clone this wiki locally