I have been trying to get the mtgox gem authentication to work, using ruby 1.9.2. I attempted the examples in the Readme. Specifically,
MtGox.configure do |config|
config.key = [my key]
config.secret = [my secret]
end
# Cancel order #1234567890
MtGox.cancel 1234567890
After calling MtGox.cancel(...) Mt. Gox returns:
{"error":"Must be logged in"}
Did the API change such that the MtGox gem is no longer functional for authenticated functions?