Questions tagged [apn]

Use this tag for Access Point Name only. For Apple Push Notifications use the [apple-push-notifications] tag.

An Access Point Name (APN) is the name of a gateway between a mobile network and another computer network.

For more information, see:

242 questions
0
votes
0 answers

Is there a way to self host an access point for cellular networks?

Let me preface this by explaining why I’m asking. I have a very inexpensive prepaid cellular plan, but the drawback to it being cheap is that the access point is located in Hong Kong, meaning all the data on that line must go through at least one…
0
votes
1 answer

What apn settings to use for mms in Smseagle for AT&T

I use different options from the official AT&T website and I don't get mms with SMSEagle (hardware SMS gateway). I noticed that APN settings are different for android, ios, etc. Which settings to use for "SMSEagle"?
0
votes
1 answer

My Android app cannot connect to localhost after setting APN

I have setup a local server running on 127.0.0.1/3000 on my MacBook. My Android app sends requests to 10.0.2.2/3000 to make connection with the server. This works pretty well until I configured the APN in the Android emulator settings. In the APN…
Richard Hu
  • 811
  • 5
  • 18
0
votes
1 answer

Does APNs provider API requirement starts March 31 notice applicable to Appcelerator Mobile Backend Services

We use PHP backend to connect to appcelerator notification REST API. In this scenario does APNs provider API requirement starts March 31 notice applicable to Appcelerator Mobile Backend Services
Ashish C
  • 31
  • 6
0
votes
2 answers

Node.js + APN: Locally, everything works but I get "Endpoint error: unable to get local issuer certificate" when launching on cloud host

I would like to be able to send notifications through a React Native app that I built on my smartphone. This script is only supposed to send a notification to my device when the server starts up. Config I have a very simple node js server with this…
ozireu
  • 1
  • 1
0
votes
1 answer

Restore APNs when app uninstalled

AFAIK there is absolutely no way to detect the moment when app gets uninstalled. I am currently writing an app which should among else toggle on/off 3G data. It went ok before 2.3 with ITelephony reflection calls, but from Android 2.3 this is not…
iseeall
  • 3,381
  • 9
  • 34
  • 43
0
votes
0 answers

Did Apple deprecate, eliminate, or standardize the "Universal" push notification certificates?

We've been using Apple's APN service for a long time. A few years back Apple introduced a "Universal" certificate that could be used for both development and production. We switched to this approach because it's one less certificate to renew, and…
software evolved
  • 4,314
  • 35
  • 45
0
votes
1 answer

BlackBerry connection on simulater working, not on device

The following code works fine on the simulator, but when I deploy it to the BlackBerry device I'm not able to connect, am I doing something wrong? URL = "socket://" + server + ":" + port +…
david
  • 1
0
votes
1 answer

Problem Using SMS and Internet at the same time W Telit UL865 NAD

I have no problems sending SMS in text mode with the Telit UL865 NAD Once initialized in Text mode I then try to connect to the APN with; AT+CGDCONT=1... which responds OK Then I do a AT#SGACT=1,1 ... which also responds with and IP and OK Next step…
0
votes
1 answer

How should an Android carrier app create APNs?

Given that you're a carrier app (defined by https://source.android.com/devices/tech/config/carrier), what's the correct way to add APNs for devices on api 28 or higher? The Android documentation talks about how to submit AOSP patches to add your…
James Moore
  • 8,636
  • 5
  • 71
  • 90
0
votes
0 answers

Test FCM-PN being sent but cloud function generated push notification not being received (works on Android equivalent)

I am able to send test notifications from the Firebase console in the foreground and background (app is dormant AND closed). But push notifications that are triggered by the cloud functions are not being received. I know the push notifications work…
BVB09
  • 805
  • 9
  • 19
0
votes
0 answers

How to check connection status for host url without using internet in Android?

I want to check if the connection to a host url is successful or not, without using internet. My Android application will not use internet. The connection to host url is right now done with the help of VPN. But in the future, the connection will get…
Priyanka Alachiya
  • 1,707
  • 2
  • 20
  • 31
0
votes
1 answer

APN not delivered

I have 2 APNs, they share the same provider, same device token. First one is delivered, second one not. payload={"aps":{"badge":0,"alert":{"action-loc-key":"View","body":"Some guy: Hey man"},"sound":"NewMessage.caf"}} <- this one is…
Alexander Davliatov
  • 723
  • 2
  • 8
  • 13
0
votes
1 answer

How to use addOverrideApn() method in Android API level 28?

I'm trying to create a mobile application to manage APN(Access Point Name). In first I need to add an APN into the mobile application. I followed this documentation. https://developer.android.com/reference/android/telephony/data/ApnSetting.Builder I…
Hilton
  • 337
  • 6
  • 19
0
votes
1 answer

Token-Based Connection to APNs Error 400 BadDeviceToken | Apple Push Notification errors

we are planning to move to the new Token-Based Connection to APNs to send notifications. Apple Document. This supports sending notifications to multi apps under the same team id and irrespective of environment stage/prod. But weirdly when try to…