gpt4 book ai didi

android - 如何以 xamarin 形式获取 android 和 IOS 设备 token ?

转载 作者:行者123 更新时间:2023-11-30 00:22:04 25 4
gpt4 key购买 nike

我需要这两个 token ...我正在使用 PushNotification 插件...我知道它会返回 token ...但我认为文档非常糟糕...我不需要显示通知...我只需要 token ......只有它有人能救救我吗???我真的需要它。我需要在应用程序开发人员中进行一些配置吗?我已经获得了 android 的发件人 ID,并且在 AppDelegate 和 MainActivity 中初始化了插件帮助 PLEEEAAAAAASE

我在 pcl 的类(class)

using PushNotification.Plugin;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json.Linq;
using PushNotification.Plugin.Abstractions;

namespace neoFly_Montana
{
public class PushNot : IPushNotificationListener
{
public void OnError(string message, DeviceType deviceType)
{
throw new NotImplementedException();
}

public void OnMessage(JObject values, DeviceType deviceType)
{
throw new NotImplementedException();
}

public void OnRegistered(string token, DeviceType deviceType)
{
throw new NotImplementedException();
}

public void OnUnregistered(DeviceType deviceType)
{
throw new NotImplementedException();
}

public bool ShouldShowNotification()
{
throw new NotImplementedException();
}
}
}

最佳答案

一旦设备注册到 APNS 或 GCM/FCM,Google 和 Apple 都会在 OnRegistered 方法中向您发送 token 。

OnRegistered 中,您可以添加逻辑来保存 token 。

public void OnRegistered(string token, DeviceType deviceType)
{
//use token here
}

关于android - 如何以 xamarin 形式获取 android 和 IOS 设备 token ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46105371/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com