Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
weixin_authorize
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ikcrm_common
weixin_authorize
Commits
6768d300
Commit
6768d300
authored
Mar 16, 2014
by
lanrion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refactor menu.rb with "http_get" and "http_post" method
parent
29f216fc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
lib/weixin_authorize/api/menu.rb
+7
-7
spec/api/menu_spec.rb
+2
-0
No files found.
lib/weixin_authorize/api/menu.rb
View file @
6768d300
...
...
@@ -6,28 +6,28 @@ module WeixinAuthorize
# 自定义菜单查询接口
# https://api.weixin.qq.com/cgi-bin/menu/get?access_token=ACCESS_TOKEN
def
menu
get_menu_url
=
"
#{
menu_base_url
}
/get
?
#{
access_token_param
}
"
JSON
.
parse
(
RestClient
.
get
(
get_menu_url
)
)
get_menu_url
=
"
#{
menu_base_url
}
/get"
http_get
(
get_menu_url
)
end
# 自定义菜单删除接口
# https://api.weixin.qq.com/cgi-bin/menu/delete?access_token=ACCESS_TOKEN
def
delete_menu
delete_menu_url
=
"
#{
menu_base_url
}
/delete
?
#{
access_token_param
}
"
JSON
.
parse
(
RestClient
.
get
(
delete_menu_url
)
)
delete_menu_url
=
"
#{
menu_base_url
}
/delete"
http_get
(
delete_menu_url
)
end
# 自定义菜单创建接口
# https://api.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN
def
create_menu
(
menu
)
create_menu_url
=
"
#{
menu_base_url
}
/create
?
#{
access_token_param
}
"
JSON
.
parse
(
RestClient
.
post
(
create_menu_url
,
menu
)
)
create_menu_url
=
"
#{
menu_base_url
}
/create"
http_post
(
create_menu_url
,
menu
)
end
private
def
menu_base_url
"
#{
endpoint
}
/menu"
"/menu"
end
end
...
...
spec/api/menu_spec.rb
View file @
6768d300
...
...
@@ -6,7 +6,9 @@ describe WeixinAuthorize::Api::Menu do
it
"can create a menu"
do
menu
=
'{"button":[{"type":"click","name":"今日歌曲","key":"V1001_TODAY_MUSIC"},{"type":"click","name":"歌手简介","key":"V1001_TODAY_SINGER"},{"name":"菜单","sub_button":[{"type":"view","name":"搜索","url":"http://www.soso.com/"},{"type":"view","name":"视频","url":"http://v.qq.com/"},{"type":"click","name":"赞一下我们","key":"V1001_GOOD"}]}]}'
response
=
$client
.
create_menu
(
menu
)
puts
response
expect
(
response
[
"errcode"
]).
to
eq
(
0
)
end
it
"can get a weixin Menu info"
do
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment