Sha256: c59cc0ac761c6577db33cadf4ae6e3a25638cb3333bad8d488638337a28a612d
Contents?: true
Size: 435 Bytes
Versions: 51
Compression:
Stored size: 435 Bytes
Contents
$LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require File.expand_path('../../lib/discourse_api', __FILE__) client = DiscourseApi::Client.new("http://localhost:3000") client.api_key = "YOUR_API_KEY" client.api_username = "YOUR_USERNAME" # get latest topics puts client.latest_topics({}) # recategorize topic puts client.recategorize_topic(topic_id: 108, category_id: 5) # get all categories puts client.categories({})
Version data entries
51 entries across 51 versions & 1 rubygems