What I am trying to do is debug an issue with my Ruby installation. There is a known "issue" where the CA cert file path is hardcoded to a location that doesn't exist anywhere except the build machine that the Ruby package was made on. This is detailed here:
https://groups.google.com/forum/#!topic/rubyinstaller/DVIDvs7xKC0
There are a number of "solutions" to this problem, most of which are captured here in this Stackoverflow Question:
http://stackoverflow.com/questions/11703679/opensslsslsslerror-on-heroku
I also found this gist:
https://gist.github.com/pweldon/767249
Which details the steps to go through to "fix" the problem. If I go through these steps, then the solution does actually work, for the URL that the gister provides, namely https://www.google.com/accounts, but when I try it for a URL that I am interested in, namely https://www.flickr.com/services/, the solution doesn't work.
So there is "something" going on here, I think to do with the cert file that is being downloaded, and whatever CA is being used by flickr compared to google, and I was hoping that I could use Fiddler to help figure out what that was. I might be a complete shot in the dark, and I probably won't know what I am looking for, but I will post in another file in this gist with what I have tried to proxy the request through fiddler.
Thanks!