123456789101112131415161718192021222324 |
- using Hotline.Share.Dtos.Snapshot;
- using Hotline.WeChat;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Hotline.Application.Tests.Infrastructure;
- public class WeiXinTest
- {
- private readonly WeChatService _weChatService;
- public WeiXinTest(WeChatService weChatService)
- {
- _weChatService = weChatService;
- }
- // [Fact]
- public async Task GetPhoneNumber_Test()
- {
- var result = await _weChatService.GetPhoneNumberAsync(new ThirdTokenDto { AppId = "12333", Secret = "4444444" });
- }
- }
|