Moon-APNS accent message

I use this code to send Apple Push notifications on iPhone:

Public Function SendPush() As String
    Dim rt As String = "Sended!"
    Dim deviceToken As String = "my token"
    Dim message As String = "Parabéns é Campeão!"
    Try

        Dim payLoad As New NotificationPayload(deviceToken, message, 1, "default")
        payLoad.AddCustom("RegionID", "IDQ10150")
        ' 51 is the badge no
        Dim notificationList = New List(Of NotificationPayload)() From { _
         payload _
        }

        Dim push = New PushNotification(True, "apn_developer_identity.p12", "password")
        Dim result = push.SendToApple(notificationList)
    Catch ex As Exception
        rt = "Error!"
    End Try

    Return rt

End Function

But my iPhone doesn't get accents. I got this: Parab? Ns? Campe? ABOUT!

anyone ideas what is going on?

considers

I decided!

I have a replacement for the Moon-APNS library in the PushNotification.cs class:

// String length
byte[] apnMessageLength = BitConverter.GetBytes((Int16)Encoding.UTF8.GetBytes(apnMessage).Length);

// Write the message
memoryStream.Write(Encoding.UTF8.GetBytes(apnMessage), 0, Encoding.UTF8.GetBytes(apnMessage).Length);

recompile and use in your project. Now accepts latin characters.

+5
source share
1 answer

You must encode your payload on UTF-8.

+1
source

All Articles