ampedxx-wechat-protocal 0.1.1 → 0.1.2
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 +4 -4
- data/lib/protocals/wechat.proto +4 -4
- data/lib/wechat/protocal/version.rb +1 -1
- data/lib/wechat_pb.rb +4 -4
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b8e043e694acbb7dbfab5768ca691200bc828d98
|
4
|
+
data.tar.gz: a3b939d81706a0d0ba765b776648e8573fdd75dd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0f7d3e0551ced11a60a3dca3a27f01fccc5cbd61d508dd1bf8f53d679f2b7c1244d7a51fa9db07d3543891cce188c3da3112958b790709c0a21778e730cfa615
|
7
|
+
data.tar.gz: cf7386d540698c3ca683747749cd4b3ccb10414e66308c79ce529053ffd43e778302b05a8dc9e90642c168e4529a824d6900f8fce4dfb274be9380d306d539f0
|
data/lib/protocals/wechat.proto
CHANGED
@@ -99,8 +99,8 @@ message Keyword {
|
|
99
99
|
message WechatOauthRequest {
|
100
100
|
string uri = 1;
|
101
101
|
string origin = 2;
|
102
|
-
string appid =
|
103
|
-
string secret_key =
|
102
|
+
string appid = 7;
|
103
|
+
string secret_key = 8;
|
104
104
|
}
|
105
105
|
|
106
106
|
message WechatOauthReply {
|
@@ -110,8 +110,8 @@ message WechatOauthReply {
|
|
110
110
|
|
111
111
|
message WechatLoginRequest {
|
112
112
|
string appid = 1;
|
113
|
-
string secret_key =
|
114
|
-
string code =
|
113
|
+
string secret_key = 7;
|
114
|
+
string code = 8;
|
115
115
|
}
|
116
116
|
|
117
117
|
message WechatLoginReply {
|
data/lib/wechat_pb.rb
CHANGED
@@ -44,8 +44,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
44
44
|
add_message "atyun.WechatOauthRequest" do
|
45
45
|
optional :uri, :string, 1
|
46
46
|
optional :origin, :string, 2
|
47
|
-
optional :appid, :string,
|
48
|
-
optional :secret_key, :string,
|
47
|
+
optional :appid, :string, 7
|
48
|
+
optional :secret_key, :string, 8
|
49
49
|
end
|
50
50
|
add_message "atyun.WechatOauthReply" do
|
51
51
|
optional :sns_url, :string, 1
|
@@ -53,8 +53,8 @@ Google::Protobuf::DescriptorPool.generated_pool.build do
|
|
53
53
|
end
|
54
54
|
add_message "atyun.WechatLoginRequest" do
|
55
55
|
optional :appid, :string, 1
|
56
|
-
optional :secret_key, :string,
|
57
|
-
optional :code, :string,
|
56
|
+
optional :secret_key, :string, 7
|
57
|
+
optional :code, :string, 8
|
58
58
|
end
|
59
59
|
add_message "atyun.WechatLoginReply" do
|
60
60
|
optional :openid, :string, 1
|