I found it =)
You can create an access token using application credentials or using login data. In this case, you do not need to call authorization.
Example (taken from comments):
String vimeoAPIURL = "vimeo.com/api/rest/v2?video_id=213"; OAuthRequest request = new OAuthRequest(Verb.GET, vimeoAPIURL); request.addQuerystringParameter("format", "json"); request.addQuerystringParameter("method","vimeo.videos.getUploaded"; request.addQuerystringParameter("user_id", "user137"); request.addQuerystringParameter("full_response", "true"); request.addQuerystringParameter("method","vimeo.videos.getThumbnailUrls"); service.signRequest(accessToken, request); Response response = request.send(); Syso(response.getCode()); Syso(response.getBody());
JMarques Oct 02 2018-12-12T00: 00Z
source share