0.02
No release in over 3 years
Low commit activity in last 3 years
Thingiverse API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0
>= 0
 Project Readme

Rubiverse¶ ↑

Talk to a Universe of Things! \o/

For more information see: www.thingiverse.com/developers

This gem should be considered beta and doesn’t yet implement all of the Thingiverse API.

Installation¶ ↑

sudo gem install thingiverse

Ruby gem usage¶ ↑

This will take a temp code and do the oauth to access_token for you.

require 'thingiverse'
tv = Thingiverse::Connection.new(client_id, client_secret, code)
puts tv.things.newest.first.name

If you already have an access_token you can just do this.

tv = Thingiverse::Connection.new
tv.access_token = my_access_token
puts tv.things.find(thing_id).files.first.name