Posts

Post not yet marked as solved
1 Replies
1.1k Views
Hi All, I am unable to install addplan in eSIM device. I am using below code but getting status as CTCellularPlanProvisioningAddPlanResultFail and also showing alert has Unable to complete data plan change. Kindly help me on fixing this issue. CTCellularPlanProvisioningRequest *provRequest = [[CTCellularPlanProvisioningRequest alloc] init];        provRequest.address = @"esimaddress"; [provisioning addPlanWith:provRequest completionHandler:^(CTCellularPlanProvisioningAddPlanResult result) {          switch (result) {            case CTCellularPlanProvisioningAddPlanResultUnknown:              NSLog(@"Provisioning Unknown");              break;            case CTCellularPlanProvisioningAddPlanResultFail:              NSLog(@"Provisioning Fail");              break;            case CTCellularPlanProvisioningAddPlanResultSuccess:              NSLog(@"Provisioning Success");              break;            default:              NSLog(@"Something went wrong, Please try again later");              break;          }        }]; Thanks in Advance
Posted Last updated
.
Post not yet marked as solved
3 Replies
1.8k Views
Hi All, I have enabled eSIM entitlements to check eSIM, but we are getting the status of eSIM supportsCellularPlan is always false. We are using the below code to check eSIM available or not: CTCellularPlanProvisioning *provisioning = [[CTCellularPlanProvisioning alloc] init];     BOOL supportseSIM = provisioning.supportsCellularPlan; Kindly let me know is there any other way to check eSIM availability.
Posted Last updated
.
Post not yet marked as solved
1 Replies
1.1k Views
Hi, I am sending deeplink(Universal links) url in push notification. When i am clicking on Push Notification it is opening safari browser from there url is loading in safari browser. If my app is Kill state or background state on click notifications first it opens safari and then my app is opening. How to fix this problem when app is in active state, Please let me know
Posted Last updated
.
Post not yet marked as solved
1 Replies
823 Views
Hi All, I am unable to install eSIM plan using addplan method in objective c kindly help me on this, I have used below code. CTCellularPlanProvisioningRequest *provRequest = [[CTCellularPlanProvisioningRequest alloc] init];       provRequest.address = @"eSim Address"; [provisioning addPlanWith:provRequest completionHandler:^(CTCellularPlanProvisioningAddPlanResult result) {         switch (result) {           case CTCellularPlanProvisioningAddPlanResultUnknown:             NSLog(@"Provisioning Unknown");             break;           case CTCellularPlanProvisioningAddPlanResultFail:             NSLog(@"Provisioning Fail");             break;           case CTCellularPlanProvisioningAddPlanResultSuccess:             NSLog(@"Provisioning Success");             break;           default:             NSLog(@"Something went wrong, Please try again later");             break;         }       }];
Posted Last updated
.
Post not yet marked as solved
1 Replies
8.9k Views
Hi AppleTeam, We are using authkey(.p8 Certificate) for Push Notifications and Campaigns in our application. But from few months we are facing issues that impacting our Application. We are getting like this error (403 Forbidden: {"reason":"InvalidProviderToken"}). May i know the reason why it is happening and also kindly help me on this to fix this issue. Thanks in Advance.
Posted Last updated
.