APNS证书制作

时间:2018-05-21 15:15:01

标签: xamarin xamarin.ios apple-push-notifications

我错过了什么吗?

我在Xamarin.iOS中创建了一些推送通知,它与开发证书完美配合。 然后我创建了一个生产证书,它不起作用。

APNS在生产中的工作方式不同吗?

感谢。

1 个答案:

答案 0 :(得分:1)

有一些事情要仔细检查。确保:

  1. 您正在使用 App Store和Ad Hoc 证书对您的应用进行签名。
  2. 您在服务器端使用 Apple推送通知服务SSL(沙盒和生产)证书
  3. tf.enable_eager_execution() # To simplify the example code. # Batch before shuffle. dataset = tf.data.Dataset.from_tensor_slices([0, 0, 0, 1, 1, 1, 2, 2, 2]) dataset = dataset.batch(3) dataset = dataset.shuffle(9) for elem in dataset: print(elem) # Prints: # tf.Tensor([1 1 1], shape=(3,), dtype=int32) # tf.Tensor([2 2 2], shape=(3,), dtype=int32) # tf.Tensor([0 0 0], shape=(3,), dtype=int32) # Shuffle before batch. dataset = tf.data.Dataset.from_tensor_slices([0, 0, 0, 1, 1, 1, 2, 2, 2]) dataset = dataset.shuffle(9) dataset = dataset.batch(3) for elem in dataset: print(elem) # Prints: # tf.Tensor([2 0 2], shape=(3,), dtype=int32) # tf.Tensor([2 1 0], shape=(3,), dtype=int32) # tf.Tensor([0 1 1], shape=(3,), dtype=int32) 中的aps-environment值设置为info.plist