Sha256: b5aa9c31a4e7d4d72c61bdf987192a45e881a05c1207d1cb1a1ef665aa7ba716
Contents?: true
Size: 454 Bytes
Versions: 4
Compression:
Stored size: 454 Bytes
Contents
module WikipediaRestClient # Protocol of the URL PROTOCOL = "https://" # Base URL of the Wikipedia REST API. BASE_URL = ".wikipedia.org/api/rest_v1" # URL parameters that are used to fetch the page content. PAGE_URL = "/page/summary/" # URL parameters that are used to fetch random page from Wikipedia. RANDOM_PAGE_URL = "/page/random/summary" # URL parameters that are used to get featured articles. FEATURED_ARTICLE = "/feed/featured/" end
Version data entries
4 entries across 4 versions & 1 rubygems