Azure / Azure/azure-notificationhubs-java-backend

[QUERY] Missing notifications on ios 13+ with apns

Open
#186 1 comment 0 reactions 0 assignees View on GitHub
Dominant language
Java
Stars
35
Forks
52
PR merge metrics
No merged PRs in 30d

Description

**Query/Question**
I have a notification hub which is able to deliver notifications for old iOS versions. I began updating gaps introduced by later releases of ios, but I can't get it to work.

My code is quite basic:
```java
public class App {

public static void main(String[] args) throws Exception {
String hubId = "...";
NotificationHub hub = new NotificationHub(
"Endpoint=sb://...",
hubId);

Map headers = new HashMap<>();
headers.put("apns-push-type", "alert");
headers.put("apns-priority", "10");

String src = "{'aps': {'title': 'Alert notification', 'body': '" + LocalDateTime.now() + ", have (" + new Random().nextInt(10) + ") alerts'}}";
String body = src.replaceAll("\'", "\"");

Notification notification = Notification.createAppleNotification(body, headers);
NotificationOutcome outcome = hub.sendNotification(notification, new HashSet<>(Arrays.asList("_valid_azure_device_tag_")));
System.out.println(outcome.getNotificationId() + " " + outcome.getTrackingId());

if (outcome.getNotificationId() != null) {
NotificationTelemetry telemetry = hub.getNotificationTelemetry(outcome.getNotificationId());
System.out.println(telemetry);
}
}

}
```

***Why is this not a Bug or a feature Request?***
I am not quite sure if above method is supported given #48 is closed. I do get a tracking id but no notification id. Repeating same operation via azure console returns "Successfully sent test message. Outcome: {0 passed, 0 failed}. Please see result section for details."

**Setup (please complete the following information if applicable):**
- `Notification-Hubs-java-sdk` v 1.1.0
- `Java` 11

**Information Checklist**
Kindly make sure that you have added all the following information above and checkoff the required fields otherwise we will treat the issue as an incomplete report. Please do not provide any private information in this bug report.

- [x] Query Added
- [x] Setup information Added

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.