Example usage for twitter4j TwitterAPIConfiguration getMaxMediaPerUpload

List of usage examples for twitter4j TwitterAPIConfiguration getMaxMediaPerUpload

Introduction

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

Prototype

int getMaxMediaPerUpload();

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();
}