Hyves (the #1 social network in The Netherlands) released their API v1.0 a few weeks ago. We already created some kind of Ruby wrapper some time ago (for the old API), but now we have a (very quickly created) wrapper for v1.0.
It works as follows:
1 2 3 4 5 6 7 8 9 10 | require 'hyves_api/hyves_api' # You need to apply for a key via http://www.hyves.nl/api/apply/ key = 'key' # Your key here secret = 'secret' # Your secret here h = Hyves.new(key, secret) # Go and login on the following URL h.authorize_url('http://your_return_url/') h.get_access_token h.users_getByUsername(:username => 'claude') |
For more info about the Hyves API check their Trac. Download our Ruby Hyves API wrapper here. Make sure you read the README for info! We’ll try to put it in a public SVN sometime soon.
Subscribe to our RSS feed
0 Responses to “Hyves API v1.0 for Ruby”