instagram-graph-api
Version:
A library to help perform requests to the Instagram Graph API.
20 lines (19 loc) • 639 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GetHashtagRecentMediaRequest = void 0;
const AbstractGetHashtagMediaRequest_1 = require("./AbstractGetHashtagMediaRequest");
/**
* A request that gets information about the recent media of an hashtag.
*
* @author Tiago Grosso <tiagogrosso99@gmail.com>
* @since 0.5.0
*/
class GetHashtagRecentMediaRequest extends AbstractGetHashtagMediaRequest_1.AbstractGetHashtagMediaRequest {
/**
* @inheritdoc
*/
url() {
return `${super.url()}/recent_media`;
}
}
exports.GetHashtagRecentMediaRequest = GetHashtagRecentMediaRequest;