-
Notifications
You must be signed in to change notification settings - Fork 48
Home
SpongyBacon edited this page Jul 29, 2015
·
13 revisions
Issues & feature suggestions belong in the issue tracker.
- 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).
- Create a main class and include the login code. Click here to see an example.
- Call the login method when your program starts for it to login to Skype.
- Once you are done with your session, make sure you use
Skype#logout
!
This is what you'll want to be doing if you are hoping to develop any sort of Skype bot. // TODO
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/Formatting
## Debugging
Please see these [debugging steps](http://coming.soon) before you submit an issue or ask for help with the API.