Skip to content

Instantly share code, notes, and snippets.

@jbclements
Created October 30, 2012 21:09
Show Gist options
  • Save jbclements/3983082 to your computer and use it in GitHub Desktop.
Save jbclements/3983082 to your computer and use it in GitHub Desktop.
#lang racket
(require net/url
#;html
(planet neil/htmlprag))
#;(string->url "https://dev.twitter.com/oauth/request_token")
(define the-port
(post-pure-port
(string->url "https://twitter.com/oauth/request_token")
#""
(list "oauth_nonce: uuhehnoteohhhohnoteuhs"
"oauth_callback: http%3A%2F%2Fmyapp.com%3A3005%2Ftwitter%2Fprocess_callback"
"oauth_signature_method: HMAC-SHA1"
"oauth_timestamp: 1300228849"
"oauth_consumer_key: OqEqJeafRSF11jBMStrZz"
"oauth_signature: Pc%2BMLdv028fxCErFyi8KXFM%2BddU%3D"
"oauth_version: 1.0")
))
(regexp-match #px".*" the-port)
#;(read-html the-port)
#;(read-html-as-xml the-port)
#;(html->sxml the-port)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment