Sha256: 3ed6e8200eefef5b28e25f2ebffdebf6f2f733364deda0459470956ce6aef7e8
Contents?: true
Size: 592 Bytes
Versions: 18
Compression:
Stored size: 592 Bytes
Contents
# frozen_string_literal: true $LOAD_PATH.unshift File.expand_path('../../lib', __FILE__) require File.expand_path('../../lib/discourse_api', __FILE__) config = DiscourseApi::ExampleHelper.load_yml client = DiscourseApi::Client.new(config['host'] || 'http://localhost:3000') client.api_key = config['api_key'] || "YOUR_API_KEY" client.api_username = config['api_username'] || "YOUR_USERNAME" # Upload a file file = Faraday::UploadIO.new('grumpy_cat.pdf', "application/pdf") client.upload_file(file: file) # Upload a file via URL client.upload_file(url: 'https://giphy.com/grumpy_cat.gif')
Version data entries
18 entries across 18 versions & 1 rubygems