Created
November 28, 2012 01:28
-
-
Save matthewlmcclure/4158445 to your computer and use it in GitHub Desktop.
curlish .ftcurlish.json for RFC 5849 proof of concept
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"curl_path": "curl", | |
"http_port": 62231, | |
"json_indent": 2, | |
"sites": { | |
"twitter": { | |
"extra_headers": {}, | |
"url_default": false, | |
"request_token_params": {}, | |
"authorize_url": "https://api.twitter.com/oauth/authorize", | |
"bearer_transmission": "query", | |
"base_url": "https://api.twitter.com/", | |
"oauth_version": "rfc5849", | |
"client_id": "...", | |
"client_secret": "...", | |
"request_token_url": "https://api.twitter.com/oauth/request_token", | |
"grant_type": "rfc5849_authorization_code", | |
"access_token_url": "https://api.twitter.com/oauth/access_token" | |
} | |
}, | |
"colors": { | |
"constant": "blue", | |
"string": "yellow", | |
"objstring": "green", | |
"jsonpfunc": null, | |
"number": "purple", | |
"statusline_ok": "green", | |
"header": "teal", | |
"statusline_error": "red", | |
"operator": null, | |
"brace": "teal" | |
}, | |
"rfc5849_token_cache": { | |
"twitter": { | |
"access_token": "...", | |
"access_token_secret": "..." | |
} | |
}, | |
"token_cache": { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment