IOS プッシュ通知の次の形式で c# から Json 文字列を送信したい:
{
"pushType": "Notification",
"notifications": [
{
"notificationId": 1,
"notificationTitle": "Notification 1",
"notificationText": "You are reading your notification 1",
"notificationExpiryDate": "yyyy-MM-dd"
},
{
"notificationId": 2,
"notificationTitle": "Notification 2",
"notificationText": "You are reading your notification 2",
"notificationExpiryDate": "yyyy-MM-dd"
},
{
"notificationId": 3,
"notificationTitle": "Notification 3",
"notificationText": "You are reading your notification 3",
"notificationExpiryDate": "yyyy-MM-dd"
}
]
}
簡単なメッセージを送信しようとしましたが、文字列の配列を送信できません。過去2日間苦労しているので、これを手伝ってください。