我正在尝试使用 Flickraw gem 将一些图像上传到我在 Flickr 中的帐户。我得到这个工作,但如何获得访问代码,而不访问 Flickr 页面,像这样:
token = flickr.get_request_token
auth_url = flickr.get_authorize_url(token['oauth_token'], :perms => 'delete')
puts "Open this url in your process to complete the authication process : #{auth_url}"
puts "Copy here the number given when you complete the process."
verify = gets.strip
...
我不明白这个过程。