Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SeaskyWeChat
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
刘圳
SeaskyWeChat
Merge requests
!27
Feature/liuzhen
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/liuzhen
feature/liuzhen
into
develop
Overview
0
Commits
1
Pipelines
0
Changes
4
Merged
刘圳
requested to merge
feature/liuzhen
into
develop
4 years ago
Overview
0
Commits
1
Pipelines
0
Changes
4
Expand
0
0
Merge request reports
Compare
develop
version 1
c6ba53ea
4 years ago
develop (base)
and
latest version
latest version
c6ba53ea
1 commit,
4 years ago
version 1
c6ba53ea
55 commits,
4 years ago
4 files
+
102
−
4
Expand all files
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
WeChat.WebApp/CorpWeChatDemo.ashx.cs
+
4
−
4
Options
@@ -52,11 +52,11 @@ namespace WeChat.WebApp
log
.
Debug
(
"ProcessRequest Get:"
+
postStr
);
log
.
Debug
(
"
CorpWeChatDemo
ProcessRequest Get:"
+
postStr
);
if
(!
string
.
IsNullOrEmpty
(
postStr
))
{
sResult
=
corpCoreDemo
.
ProcessMsg
(
postStr
,
pMsgSignature
,
pTimeStamp
,
pNonce
);
log
.
Debug
(
"ProcessRequest sResult:"
+
sResult
);
log
.
Debug
(
"
CorpWeChatDemo
ProcessRequest sResult:"
+
sResult
);
}
HttpContext
.
Current
.
Response
.
Write
(
sResult
);
HttpContext
.
Current
.
ApplicationInstance
.
CompleteRequest
();
@@ -78,7 +78,7 @@ namespace WeChat.WebApp
else
{
pEchoStr
=
corpCoreDemo
.
CorpAuth
(
pTimeStamp
,
pNonce
,
pEchoStr
,
pMsgSignature
);
log
.
Debug
(
"ProcessRequest pEchoStr:"
+
pEchoStr
);
log
.
Debug
(
"
CorpWeChatDemo
ProcessRequest pEchoStr:"
+
pEchoStr
);
HttpContext
.
Current
.
Response
.
Write
(
pEchoStr
);
HttpContext
.
Current
.
ApplicationInstance
.
CompleteRequest
();
}
@@ -86,7 +86,7 @@ namespace WeChat.WebApp
}
catch
(
Exception
e
)
{
log
.
Error
(
"ProcessRequest Get:"
,
e
);
//写入一条新log
log
.
Error
(
"
CorpWeChatDemo
ProcessRequest Get:"
,
e
);
//写入一条新log
}
}
}