Example usage for twitter4j TwitterAPIConfiguration getPhotoSizeLimit

List of usage examples for twitter4j TwitterAPIConfiguration getPhotoSizeLimit

Introduction

In this page you can find the example usage for twitter4j TwitterAPIConfiguration getPhotoSizeLimit.

Prototype

int getPhotoSizeLimit();

Source Link

Usage

From source file:com.freshdigitable.udonroad.module.realm.TwitterAPIConfigurationRealm.java

License:Apache License

TwitterAPIConfigurationRealm(TwitterAPIConfiguration configuration) {
    this.photoSizeLimit = configuration.getPhotoSizeLimit();
    this.shortURLLength = configuration.getShortURLLength();
    this.shortURLLengthHttps = configuration.getShortURLLengthHttps();
    this.charactersReservedPerMedia = configuration.getCharactersReservedPerMedia();
    this.maxMediaPerUpload = configuration.getMaxMediaPerUpload();
}