httpclient 2.3.0.1 → 2.8.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +85 -0
  3. data/bin/httpclient +18 -6
  4. data/bin/jsonclient +85 -0
  5. data/lib/http-access2.rb +1 -1
  6. data/lib/httpclient.rb +262 -88
  7. data/lib/httpclient/auth.rb +269 -244
  8. data/lib/httpclient/cacert.pem +3952 -0
  9. data/lib/httpclient/cacert1024.pem +3866 -0
  10. data/lib/httpclient/connection.rb +1 -1
  11. data/lib/httpclient/cookie.rb +161 -514
  12. data/lib/httpclient/http.rb +57 -21
  13. data/lib/httpclient/include_client.rb +2 -0
  14. data/lib/httpclient/jruby_ssl_socket.rb +588 -0
  15. data/lib/httpclient/session.rb +259 -317
  16. data/lib/httpclient/ssl_config.rb +141 -188
  17. data/lib/httpclient/ssl_socket.rb +150 -0
  18. data/lib/httpclient/timeout.rb +1 -1
  19. data/lib/httpclient/util.rb +62 -1
  20. data/lib/httpclient/version.rb +1 -1
  21. data/lib/httpclient/webagent-cookie.rb +459 -0
  22. data/lib/jsonclient.rb +63 -0
  23. data/lib/oauthclient.rb +2 -1
  24. data/sample/jsonclient.rb +67 -0
  25. data/sample/oauth_twitter.rb +4 -4
  26. data/test/{ca-chain.cert → ca-chain.pem} +0 -0
  27. data/test/client-pass.key +18 -0
  28. data/test/helper.rb +10 -8
  29. data/test/jruby_ssl_socket/test_pemutils.rb +32 -0
  30. data/test/test_auth.rb +175 -4
  31. data/test/test_cookie.rb +147 -243
  32. data/test/test_http-access2.rb +17 -16
  33. data/test/test_httpclient.rb +458 -77
  34. data/test/test_jsonclient.rb +80 -0
  35. data/test/test_ssl.rb +341 -17
  36. data/test/test_webagent-cookie.rb +465 -0
  37. metadata +57 -55
  38. data/README.txt +0 -721
  39. data/lib/httpclient/cacert.p7s +0 -1858
  40. data/lib/httpclient/cacert_sha1.p7s +0 -1858
  41. data/sample/oauth_salesforce_10.rb +0 -63
@@ -1,63 +0,0 @@
1
- require 'oauthclient'
2
-
3
- # Get your own consumer token from http://twitter.com/apps
4
- consumer_key = '3MVG9y6x0357HledNGHa9tJrrlOmpCSo5alTv4W4AG1M0f9a8cGBIwo5wN2bQ7hjAEsjD7SBWf3H2Oycc9Qql'
5
- consumer_secret = '1404017425765973464'
6
-
7
- callback = ARGV.shift # can be nil for OAuth 1.0. (not 1.0a)
8
- request_token_url = 'https://login.salesforce.com/_nc_external/system/security/oauth/RequestTokenHandler'
9
- oob_authorize_url = 'https://login.salesforce.com/setup/secur/RemoteAccessAuthorizationPage.apexp'
10
- access_token_url = 'https://login.salesforce.com/_nc_external/system/security/oauth/AccessTokenHandler'
11
-
12
- STDOUT.sync = true
13
-
14
- # create OAuth client.
15
- client = OAuthClient.new
16
- client.oauth_config.consumer_key = consumer_key
17
- client.oauth_config.consumer_secret = consumer_secret
18
- client.oauth_config.signature_method = 'HMAC-SHA1'
19
- client.oauth_config.http_method = :get # Twitter does not allow :post
20
- client.debug_dev = STDERR if $DEBUG
21
-
22
- client.ssl_config.ssl_version = "TLSv1_1"
23
-
24
- # Get request token.
25
- res = client.get_request_token(request_token_url, callback)
26
- p res.status
27
- p res.oauth_params
28
- p res.content
29
- p client.oauth_config
30
- token = res.oauth_params['oauth_token']
31
- secret = res.oauth_params['oauth_token_secret']
32
- raise if token.nil? or secret.nil?
33
-
34
- # You need to confirm authorization out of band.
35
- puts
36
- puts "Go here and do confirm: #{oob_authorize_url}?oauth_token=#{token}&oauth_consumer_key=#{consumer_key}"
37
- puts "Type oauth_verifier/PIN (if given) and hit [enter] to go"
38
- verifier = gets.chomp
39
- verifier = nil if verifier.empty?
40
-
41
- # Get access token.
42
- # FYI: You may need to re-construct OAuthClient instance here.
43
- # In normal web app flow, getting access token and getting request token
44
- # must be done in different HTTP requests.
45
- # client = OAuthClient.new
46
- # client.oauth_config.consumer_key = consumer_key
47
- # client.oauth_config.consumer_secret = consumer_secret
48
- # client.oauth_config.signature_method = 'HMAC-SHA1'
49
- # client.oauth_config.http_method = :get # Twitter does not allow :post
50
- res = client.get_access_token(access_token_url, token, secret, verifier)
51
- p res.status
52
- p res.oauth_params
53
- p res.content
54
- p client.oauth_config
55
- id = res.oauth_params['user_id']
56
-
57
- puts
58
- puts "Access token usage example"
59
- puts "Hit [enter] to go"
60
- gets
61
-
62
- # Access to a protected resource. (DM)
63
- puts client.get("http://twitter.com/direct_messages.json")