Sha256: bd3f7e283578c1580a605a9435f7de4fa1a1175630cbf45c3532ae6219db4369
Contents?: true
Size: 480 Bytes
Versions: 4
Compression:
Stored size: 480 Bytes
Contents
# frozen_string_literal: true $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
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
discourse_api-0.38.0 | examples/upload_file.rb |
discourse_api-0.37.0 | examples/upload_file.rb |
discourse_api-0.36.0 | examples/upload_file.rb |
discourse_api-0.35.0 | examples/upload_file.rb |