Bitlinks

open class Bitlinks(accessToken: String)(source)

Provides functions to create and manage Bitlinks.

See the Bitly API for more information.

Constructors

Link copied to clipboard
constructor(accessToken: String)

Properties

Link copied to clipboard

The last API call response.

Functions

Link copied to clipboard
fun clicks(bitlink: String, unit: Units = Units.DAY, units: Int = -1, unit_reference: String = Constants.EMPTY, toJson: Boolean = false): String

Returns the click counts for a specified Bitlink.

Link copied to clipboard
fun create(config: CreateConfig): String
fun create(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, title: String = Constants.EMPTY, tags: Array<String> = emptyArray(), deeplinks: CreateDeeplinks = CreateDeeplinks(), toJson: Boolean = false): String

Converts a long url to a Bitlink and sets additional parameters.

Link copied to clipboard
fun expand(bitlink_id: String, toJson: Boolean = false): String

Expands a Bitlink.

Link copied to clipboard
fun shorten(long_url: String, domain: String = Constants.EMPTY, group_guid: String = Constants.EMPTY, toJson: Boolean = false): String

Shortens a long URL.

Link copied to clipboard
fun update(config: UpdateConfig): String
fun update(bitlink: String, title: String = Constants.EMPTY, archived: Boolean = false, tags: Array<String> = emptyArray(), deeplinks: UpdateDeeplinks = UpdateDeeplinks(), toJson: Boolean = false): String

Updates parameters in the specified Bitlink.

Link copied to clipboard
fun updateCustom(custom_bitlink: String, bitlink_id: String, toJson: Boolean = false): String

Move a keyword (or custom back-half) to a different Bitlink (domains must match).