Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
The divshare gem makes it easier to use the Divshare API. To use it, you need to create a Divshare account and sign up for an API key.
Here's a brief walkthrough of the basic operations (see examples/
for more information):
require 'divshare'
# Set these for your divshare account
api_key = 'your api key'
api_secret = 'your api secret'
email = 'your login email address'
password = 'your password'
filename = 'a file you want to upload'
client = Divshare::Client.new(api_key, api_secret)
client.login(email, password)
all_my_files = client.get_user_files
all_my_files.each do |f|
print "#{f.file_name} (#{f.file_size}) "
puts "was last downloaded #{Time.at(f.last_downloaded_at.to_i)}"
end
ticket = client.get_upload_ticket
uploaded_id = client.upload(ticket, filename)
puts "#{filename} uploaded with new id: #{uploaded_id}"
client.logout
Now, going through the same script step-by-step. Use your Divshare API key and secret (comes with key) to create a client:
client = Divshare::Client.new(api_key, api_secret)
Login using the credentials for your Divshare account:
client.login(email, password)
Get an array of all of your files:
all_my_files = client.get_user_files
Do something with the files:
all_my_files.each do |f|
print "#{f.file_name} (#{f.file_size}) "
puts "was last downloaded #{Time.at(f.last_downloaded_at.to_i)}"
end
Upload a file, and capture its id:
ticket = client.get_upload_ticket
uploaded_id = client.upload(ticket, filename)
Logout
client.logout
Install using rubygems:
sudo gem install divshare
Or clone from github
git clone git://github.com/wasnotrice/divshare.git
FAQs
Unknown package
We found that divshare demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.