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
...
このプロセスがわかりません。