old mode 100755
new mode 100644
| | |
| | | using System; |
| | | using ObjCRuntime; |
| | | using UserNotifications; |
| | | using Shared.Common; |
| | | //using Shared.Common; |
| | | using Microsoft.AppCenter; |
| | | using Microsoft.AppCenter.Analytics; |
| | | using Microsoft.AppCenter.Crashes; |
| | | using Shared.IOS.TBL; |
| | | |
| | | namespace GateWay.Ios |
| | | { |
| | | // The UIApplicationDelegate for the application. This class is responsible for launching the |
| | |
| | | Window.RootViewController = rootViewController; |
| | | Window.MakeKeyAndVisible(); |
| | | |
| | | Shared.IOS.TBL.WXApi.RegisterApp("wx2ec8f53f6fa36e82", "https://hdlcontrol.com/ZigbeeApp/"); |
| | | |
| | | DeviceTokenAction += (deviceToken) => |
| | | { |
| | | |
| | | Shared.Common.Config.Instance.RegistrationID = deviceToken; |
| | | }; |
| | | haveToSignOut = false; |
| | |
| | | } |
| | | } |
| | | AppCenter.Start("0ca801a2-742b-42fb-ba10-7ba4391371aa", typeof(Analytics), typeof(Crashes)); |
| | | GDMapKit.setGDApiKey("866fae25f336bc8d9a79b1d19267fffb");//高德地图key |
| | | return true; |
| | | } |
| | | |
| | |
| | | { |
| | | // Called when the application is about to terminate. Save data, if needed. See also DidEnterBackground. |
| | | base.WillTerminate(application); |
| | | } |
| | | |
| | | public static Action<string> RespAction; |
| | | public static void WXLogin() |
| | | { |
| | | |
| | | |
| | | var req = new SendAuthReq { Scope = "snsapi_userinfo", State = "ZigbeeApp", OpenID = "0c806938e2413ce73eef92cc3" }; |
| | | WXApi.SendAuthReq(req, rootViewController, null, null); |
| | | |
| | | } |
| | | |
| | | MyWXApiDelegate myWXApiDelegate = new MyWXApiDelegate { }; |
| | | |
| | | class MyWXApiDelegate : WXApiDelegate |
| | | { |
| | | public override void OnReq(BaseReq req) |
| | | { |
| | | |
| | | } |
| | | public override void OnResp(BaseResp resp) |
| | | { |
| | | if (resp is SendAuthResp) |
| | | { |
| | | var sendAuthResp = resp as SendAuthResp; |
| | | switch (sendAuthResp.ErrCode) |
| | | { |
| | | case 0: |
| | | try |
| | | { |
| | | var result = new System.Net.WebClient { }.DownloadString($"https://api.weixin.qq.com/sns/oauth2/access_token?appid=wx2ec8f53f6fa36e82&secret=a08585cd6ff2ce64570b9e7e6525dd8e&code={((SendAuthResp)resp).Code}&grant_type=authorization_code"); |
| | | RespAction?.Invoke(result); |
| | | } |
| | | catch { |
| | | RespAction?.Invoke(null); |
| | | } |
| | | break; |
| | | default: |
| | | RespAction?.Invoke(null); |
| | | break; |
| | | } |
| | | |
| | | } |
| | | } |
| | | } |
| | | public override bool ContinueUserActivity(UIApplication application, NSUserActivity userActivity, UIApplicationRestorationHandler completionHandler) |
| | | { |
| | | return WXApi.HandleOpenUniversalLink(userActivity, myWXApiDelegate); |
| | | } |
| | | } |
| | | } |