/netbase-java

A Java wrapper library for the RESTful NetBase Insight API

Primary LanguageJava

netbase-java

A Java wrapper library for the RESTful NetBase Insight API

Using

The library is quite simple and easy to use. You can use HTTP Basic authentication or OAuth 2.0 authentication.

See the API Documentation at https://api.netbase.com/ for more information.

NetBase nb = NetBaseFactory.getInstance("account", "pwd", true);
//NetBase nb_oauth = NetBaseFactory.getInstance("access_token", true);
	
Request req = new Request();
req.addQueryParam("scope", "USER");
try {
	Response res = nb.topics(req);
}
catch (ParamErrorException e) {
	return;
}
catch (ApiErrorException e) {
	return;
}

Once you have registered your client application, this library help you get/refresh tokens in few steps.

NetbaseOAuth oauth = NetBaseFactory.getOAuthInstance("redirectUri", "clientId", "clientSecret", true);

String refreshToken = null;
String accessToken = null;
try {
	TokenResponse tokenResponse = oauth.getAccessTokenByAuthCode("authorization code");
	refreshToken = tokenResponse.getRefreshToken();
	accessToken = tokenResponse.getAccessToken();
}
catch (ApiErrorException e) {
	return;
}
catch (ParamErrorException e) {
	return;
}

You can find more demos under the package com.netbase.insightapi.v2.samples.

License

This project is licensed under the Apache 2.0 license.