https://github.com/devstarter/pushbullet.java
Java (Spring) library for Pushbullet API
https://github.com/devstarter/pushbullet.java
Last synced: about 1 year ago
JSON representation
Java (Spring) library for Pushbullet API
- Host: GitHub
- URL: https://github.com/devstarter/pushbullet.java
- Owner: devstarter
- Created: 2014-11-13T01:45:23.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2016-03-01T02:10:30.000Z (about 10 years ago)
- Last Synced: 2025-01-21T19:32:20.350Z (about 1 year ago)
- Language: Java
- Homepage: https://docs.pushbullet.com
- Size: 23.4 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Pushbullet on Spring
===================
Java (Spring) library for Pushbullet API
```xml
```
```java
import static com.pushbullet.Builder.pushbullet;
import static com.pushbullet.Builder.registerClient;
@Autowired
private PushbulletClient pushbulletClient;
registerClient(pushbulletClient);
pushbullet().pushes().channel("pushbullet-java").note("to chanel", "test");
// or
pushbullet(pushbulletClient).pushes().broadcast().note("broadcast", "test");
```