Sha256: 0c31603a36853c24a0b3c54fa9931617c4b153a56fad40210f4086b994d24166
Contents?: true
Size: 450 Bytes
Versions: 22
Compression:
Stored size: 450 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" # 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
22 entries across 22 versions & 1 rubygems