vinceh121 / socialblade-api

Unofficial SocialBlade api
GNU General Public License v3.0
20 stars 5 forks source link
api rest-api socialblade

socialblade-api

Unofficial Java API to communicate to SocialBlade.

For now, only Youtube and Twitter are implemented.

How to use

The library can be used like any other Maven artifact, just add the Jitpack.io repository:

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

And then add the dependency:

<dependency>
    <groupId>com.github.vinceh121</groupId>
    <artifactId>socialblade-api</artifactId>
    <version>0.2.1</version>
</dependency>

Example

The following example prints out the number of subscribers of pewdiepie's Youtube channel

SocialBlade sb = new SocialBlade();
sb.login("Your SocialBlade username", "Your SocialBlade password");

YTStats stats = sb.statsYoutube("pewdiepie");
System.out.println(stats.getSubs());

License

The library is released under the GNU General Public License V3. I have no affiliation with SocialBlade.