forked from JeffreySu/WeiXinMPSDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2、添加公众号授权用户信息变更
- Loading branch information
Showing
11 changed files
with
567 additions
and
0 deletions.
There are no files selected for viewing
62 changes: 62 additions & 0 deletions
62
...arc.Weixin.MP/Entities/Request/Event/RequestMessageEvent_UserAuthorizationCancellation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#region Apache License Version 2.0 | ||
/*---------------------------------------------------------------- | ||
Copyright 2024 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. | ||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
except in compliance with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under the | ||
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md | ||
----------------------------------------------------------------*/ | ||
#endregion Apache License Version 2.0 | ||
|
||
/*---------------------------------------------------------------- | ||
Copyright (C) 2024 Senparc | ||
文件名:RequestMessageEvent_UserAuthorizationCancellation.cs | ||
文件功能描述:事件之授权用户信息变更 | ||
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/authorization_change.html | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.NeuChar.Entities; | ||
|
||
namespace Senparc.Weixin.MP.Entities | ||
{ | ||
/// <summary> | ||
/// 事件之授权用户信息变更 | ||
/// </summary> | ||
public class RequestMessageEvent_UserAuthorizationCancellation : RequestMessageEventBase, IRequestMessageEventBase | ||
{ | ||
/// <summary> | ||
/// 事件类型 | ||
/// </summary> | ||
public override Event Event | ||
{ | ||
get { return Event.user_authorization_revoke; } | ||
} | ||
|
||
/// <summary> | ||
/// 授权用户OpenID | ||
/// </summary> | ||
public string OpenID { get; set; } | ||
|
||
/// <summary> | ||
/// 公众号的AppID | ||
/// </summary> | ||
public string AppID { get; set; } | ||
|
||
/// <summary> | ||
/// 用户撤回的H5授权信息,201:地址,202:发票信息,203:卡券信息,204:麦克风,205:昵称和头像,206:位置信息,207:选中的图片或视频 | ||
/// </summary> | ||
public string RevokeInfo { get; set; } | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...P/Senparc.Weixin.MP/Entities/Request/Event/RequestMessageEvent_UserAuthorizationRevoke.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#region Apache License Version 2.0 | ||
/*---------------------------------------------------------------- | ||
Copyright 2024 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. | ||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
except in compliance with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under the | ||
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md | ||
----------------------------------------------------------------*/ | ||
#endregion Apache License Version 2.0 | ||
|
||
/*---------------------------------------------------------------- | ||
Copyright (C) 2024 Senparc | ||
文件名:RequestMessageEvent_UserAuthorizationRevoke.cs | ||
文件功能描述:事件之授权用户信息变更 | ||
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/authorization_change.html | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.NeuChar.Entities; | ||
|
||
namespace Senparc.Weixin.MP.Entities | ||
{ | ||
/// <summary> | ||
/// 事件之授权用户信息变更 | ||
/// </summary> | ||
public class RequestMessageEvent_UserAuthorizationRevoke : RequestMessageEventBase, IRequestMessageEventBase | ||
{ | ||
/// <summary> | ||
/// 事件类型 | ||
/// </summary> | ||
public override Event Event | ||
{ | ||
get { return Event.user_authorization_revoke; } | ||
} | ||
|
||
/// <summary> | ||
/// 授权用户OpenID | ||
/// </summary> | ||
public string OpenID { get; set; } | ||
|
||
/// <summary> | ||
/// 公众号的AppID | ||
/// </summary> | ||
public string AppID { get; set; } | ||
|
||
/// <summary> | ||
/// 用户撤回的H5授权信息,201:地址,202:发票信息,203:卡券信息,204:麦克风,205:昵称和头像,206:位置信息,207:选中的图片或视频 | ||
/// </summary> | ||
public string RevokeInfo { get; set; } | ||
} | ||
} |
62 changes: 62 additions & 0 deletions
62
...eixin.MP/Senparc.Weixin.MP/Entities/Request/Event/RequestMessageEvent_UserInfoModified.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
#region Apache License Version 2.0 | ||
/*---------------------------------------------------------------- | ||
Copyright 2024 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. | ||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
except in compliance with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under the | ||
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md | ||
----------------------------------------------------------------*/ | ||
#endregion Apache License Version 2.0 | ||
|
||
/*---------------------------------------------------------------- | ||
Copyright (C) 2024 Senparc | ||
文件名:RequestMessageEvent_UserInfoModified.cs | ||
文件功能描述:事件之授权用户信息变更 | ||
https://developers.weixin.qq.com/doc/offiaccount/OA_Web_Apps/authorization_change.html | ||
----------------------------------------------------------------*/ | ||
|
||
using Senparc.NeuChar.Entities; | ||
|
||
namespace Senparc.Weixin.MP.Entities | ||
{ | ||
/// <summary> | ||
/// 事件之授权用户信息变更 | ||
/// </summary> | ||
public class RequestMessageEvent_UserInfoModified : RequestMessageEventBase, IRequestMessageEventBase | ||
{ | ||
/// <summary> | ||
/// 事件类型 | ||
/// </summary> | ||
public override Event Event | ||
{ | ||
get { return Event.user_info_modified; } | ||
} | ||
|
||
/// <summary> | ||
/// 授权用户OpenID | ||
/// </summary> | ||
public string OpenID { get; set; } | ||
|
||
/// <summary> | ||
/// 公众号的AppID | ||
/// </summary> | ||
public string AppID { get; set; } | ||
|
||
/// <summary> | ||
/// 用户撤回的H5授权信息,201:地址,202:发票信息,203:卡券信息,204:麦克风,205:昵称和头像,206:位置信息,207:选中的图片或视频 | ||
/// </summary> | ||
public string RevokeInfo { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
70 changes: 70 additions & 0 deletions
70
...Weixin.WxOpen/Entities/Request/Event/RequestMessageEvent_UserAuthorizationCancellation.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
#region Apache License Version 2.0 | ||
/*---------------------------------------------------------------- | ||
Copyright 2024 Jeffrey Su & Suzhou Senparc Network Technology Co.,Ltd. | ||
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file | ||
except in compliance with the License. You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software distributed under the | ||
License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, | ||
either express or implied. See the License for the specific language governing permissions | ||
and limitations under the License. | ||
Detail: https://github.com/JeffreySu/WeiXinMPSDK/blob/master/license.md | ||
----------------------------------------------------------------*/ | ||
#endregion Apache License Version 2.0 | ||
|
||
/*---------------------------------------------------------------- | ||
Copyright (C) 2024 Senparc | ||
文件名:RequestMessageEvent_UserAuthorizationCancellation.cs | ||
文件功能描述:事件之授权用户信息变更 | ||
https://developers.weixin.qq.com/miniprogram/dev/framework/security.html#%E6%8E%88%E6%9D%83%E7%94%A8%E6%88%B7%E4%BF%A1%E6%81%AF%E5%8F%98%E6%9B%B4 | ||
----------------------------------------------------------------*/ | ||
|
||
namespace Senparc.Weixin.WxOpen.Entities | ||
{ | ||
/// <summary> | ||
/// 事件之授权用户信息变更 | ||
/// </summary> | ||
public class RequestMessageEvent_UserAuthorizationCancellation : RequestMessageEventBase, IRequestMessageEventBase | ||
{ | ||
/// <summary> | ||
/// 事件类型 | ||
/// </summary> | ||
public override Event Event | ||
{ | ||
get { return Event.user_authorization_cancellation; } | ||
} | ||
|
||
/// <summary> | ||
/// 授权用户OpenID | ||
/// </summary> | ||
public string OpenID { get; set; } | ||
|
||
/// <summary> | ||
/// 小程序的AppID | ||
/// </summary> | ||
public string AppID { get; set; } | ||
/// <summary> | ||
/// 用户撤回的授权信息,1:车牌号,2:地址,3:发票信息,4:蓝牙,5:麦克风,6:昵称和头像,7:摄像头,8:手机号,12:微信运动步数,13:位置信息,14:选中的图片或视频,15:选中的文件,16:邮箱地址,18:选择的位置信息,19:昵称输入键盘中选择的微信昵称,20:获取用户头像组件中选择的微信头像 | ||
/// </summary> | ||
public string RevokeInfo { get; set; } | ||
|
||
/// <summary> | ||
/// 插件场景用户撤回,插件的AppID | ||
/// </summary> | ||
public string PluginID { get; set; } | ||
|
||
/// <summary> | ||
/// 插件场景用户撤回,撤回用户的OpenPID | ||
/// </summary> | ||
public string OpenPID { get; set; } | ||
} | ||
} |
Oops, something went wrong.