qq_hulian 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/lib/qq_hulian/https.rb +42 -0
- data/lib/qq_hulian/user.rb +56 -0
- data/lib/qq_hulian/version.rb +3 -0
- data/lib/qq_hulian.rb +4 -0
- data/qq_hulian.gemspec +23 -0
- metadata +82 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7d097d2e8b4deb898d551fefb6a8f42d4c19d7c7
|
4
|
+
data.tar.gz: cc82f3259c466ed41de0cefa00a75676ef45cc74
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 9a4c38f0b11d86ea406c0fcfcaef1caae27e9469a2f5931453c8737e7bef56a8d7998584db4dd7f98ac53cdf8530340f5a9c3da3da43757ecead6ea44e34440e
|
7
|
+
data.tar.gz: b9de2ecdec1ee65ea650d4f5d2faf8b03df4ecbf3fc08317c589e72316010fcd1cb21c02fdcdbf9d68f482d527e5d8492681da777c68359375289bdc3770eef6
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 zql
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
# QqHulian
|
2
|
+
|
3
|
+
TODO: Write a gem description
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'qq_hulian'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install qq_hulian
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
TODO: Write usage instructions here
|
22
|
+
|
23
|
+
## Contributing
|
24
|
+
|
25
|
+
1. Fork it
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1,42 @@
|
|
1
|
+
#encoding:utf-8
|
2
|
+
require 'net/http'
|
3
|
+
require 'uri'
|
4
|
+
require 'net/https'
|
5
|
+
require 'json'
|
6
|
+
|
7
|
+
module QqHulian
|
8
|
+
class Https
|
9
|
+
# To change this template use File | Settings | File Templates.
|
10
|
+
# To change this template use File | Settings | File Templates.
|
11
|
+
|
12
|
+
#https 请求
|
13
|
+
#url 请求地址
|
14
|
+
#args 需要传递的参数
|
15
|
+
def https_get(url,args)
|
16
|
+
uri = URI.parse(url)
|
17
|
+
uri.query = URI.encode_www_form(args)
|
18
|
+
http = Net::HTTP.new(uri.host, uri.port)
|
19
|
+
http.use_ssl = true
|
20
|
+
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
21
|
+
|
22
|
+
request = Net::HTTP::Get.new(uri.request_uri)
|
23
|
+
|
24
|
+
response = http.request(request)
|
25
|
+
response.body
|
26
|
+
end
|
27
|
+
|
28
|
+
#https 请求
|
29
|
+
#url 请求地址
|
30
|
+
#args 需要传递的参数
|
31
|
+
def https_post(url,args)
|
32
|
+
uri = URI.parse(url)
|
33
|
+
https=Net::HTTP.new(uri.host,uri.port)
|
34
|
+
https.use_ssl=true
|
35
|
+
https.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
36
|
+
req = Net::HTTP::Post.new(uri.path)
|
37
|
+
req.set_form_data(args)
|
38
|
+
res = https.request(req)
|
39
|
+
res.body
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
#encoding:utf-8
|
2
|
+
require 'json'
|
3
|
+
module QqHulian
|
4
|
+
# To change this template use File | Settings | File Templates.
|
5
|
+
class User
|
6
|
+
include QqHulian
|
7
|
+
|
8
|
+
#获取登录用户在QQ空间的信息,包括昵称、头像、性别及黄钻信息(包括黄钻等级、是否年费黄钻等)
|
9
|
+
#参数: 上传获取
|
10
|
+
#access_token = params[:access_token]
|
11
|
+
#oauth_consumer_key = params[:oauth_consumer_key]
|
12
|
+
#openid = params[:openid]
|
13
|
+
#format = params[:format]
|
14
|
+
def get_user_info
|
15
|
+
method = "get_user_info"
|
16
|
+
begin
|
17
|
+
access_token = params[:access_token].to_s
|
18
|
+
oauth_consumer_key = params[:oauth_consumer_key].to_s
|
19
|
+
openid = params[:openid].to_s
|
20
|
+
format = params[:format].to_s
|
21
|
+
rescue => err
|
22
|
+
raise error_msg(method,err.to_s)
|
23
|
+
end
|
24
|
+
|
25
|
+
begin
|
26
|
+
url = "https://graph.qq.com/user/get_user_info"
|
27
|
+
params = {}
|
28
|
+
params.merge!(access_token:access_token)
|
29
|
+
params.merge!(oauth_consumer_key:oauth_consumer_key)
|
30
|
+
params.merge!(openid:openid)
|
31
|
+
params.merge!(format:format)
|
32
|
+
msg = https_get(url,params)
|
33
|
+
user_msg = JSON.parse(msg)
|
34
|
+
rescue => err
|
35
|
+
if @_retry then
|
36
|
+
retry
|
37
|
+
else
|
38
|
+
raise error_msg(method,err.to_s)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
private
|
50
|
+
|
51
|
+
def error_msg(method,msg)
|
52
|
+
"Error in Model:QQHULIAN Class:User Mehtod:#{method} Msg:#{msg} "
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
end
|
data/lib/qq_hulian.rb
ADDED
data/qq_hulian.gemspec
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'qq_hulian/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "qq_hulian"
|
8
|
+
spec.version = QqHulian::VERSION
|
9
|
+
spec.authors = ["zql"]
|
10
|
+
spec.email = ["hahazhouqunli@gmail.com"]
|
11
|
+
spec.description = %q{"QQ互联平台"}
|
12
|
+
spec.summary = %q{"QQ互联平台"}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
end
|
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: qq_hulian
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- zql
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2013-07-25 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
description: '"QQ互联平台"'
|
42
|
+
email:
|
43
|
+
- hahazhouqunli@gmail.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- .gitignore
|
49
|
+
- Gemfile
|
50
|
+
- LICENSE.txt
|
51
|
+
- README.md
|
52
|
+
- Rakefile
|
53
|
+
- lib/qq_hulian.rb
|
54
|
+
- lib/qq_hulian/https.rb
|
55
|
+
- lib/qq_hulian/user.rb
|
56
|
+
- lib/qq_hulian/version.rb
|
57
|
+
- qq_hulian.gemspec
|
58
|
+
homepage: ''
|
59
|
+
licenses:
|
60
|
+
- MIT
|
61
|
+
metadata: {}
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options: []
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 2.0.0.rc.2
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: '"QQ互联平台"'
|
82
|
+
test_files: []
|