back to notes

Using Charles proxy to see traffic

You can run request calls through the Charles proxy to see traffic. I just tested this locally.

var request = require('request') request({ url: 'https://api.twitter.com/api/v1/timeline.json' , callback: console.log.bind(console) , proxy: 'http://127.0.0.1:8888' })



last updated august 2012