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?
Still works for me, with 1.9.2. Make sure your credentials are correct and that the key pair has the correct permissions on MtGox's site. Also, ensure your gem version is at least 0.7.3 (latest is 0.7.4).